Skip to content

Commit

Permalink
Add 26173.cpp
Browse files Browse the repository at this point in the history
  • Loading branch information
Hiyabye authored Dec 29, 2024
1 parent 6e43b78 commit c989318
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions 26xxx/26173.cpp
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
#include <cmath>
#include <iomanip>
#include <iostream>
using namespace std;

void solve(void) {
long long a; cin >> a;

cout << fixed << setprecision(10) << sqrt(a / M_PI) * 2;
}

int main(void) {
ios::sync_with_stdio(false);
cin.tie(nullptr);

solve();
return 0;
}

0 comments on commit c989318

Please sign in to comment.