문제
풀이
#include <cmath>
#include <iostream>
using namespace std;
void solve(void) {
int w; cin >> w;
cout << sqrt(32 * w);
}
int main(void) {
ios::sync_with_stdio(false);
cin.tie(nullptr);
solve();
return 0;
}#include <cmath>
#include <iostream>
using namespace std;
void solve(void) {
int w; cin >> w;
cout << sqrt(32 * w);
}
int main(void) {
ios::sync_with_stdio(false);
cin.tie(nullptr);
solve();
return 0;
}