結果
| 問題 |
No.508 超ゆとり教育
|
| コンテスト | |
| ユーザー |
はむこ
|
| 提出日時 | 2016-09-25 22:11:17 |
| 言語 | C++11(廃止可能性あり) (gcc 13.3.0) |
| 結果 |
WA
(最新)
AC
(最初)
|
| 実行時間 | - |
| コード長 | 261 bytes |
| コンパイル時間 | 1,280 ms |
| コンパイル使用メモリ | 158,824 KB |
| 実行使用メモリ | 6,944 KB |
| 最終ジャッジ日時 | 2024-09-13 15:18:54 |
| 合計ジャッジ時間 | 2,845 ms |
|
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | WA * 1 |
| other | WA * 7 |
ソースコード
#include <bits/stdc++.h>
using namespace std;
using ld = long double;
#define ldout fixed << setprecision(40)
int main(void) {
cin.tie(0); ios::sync_with_stdio(false);
ld n; cin >> n;
cout << ldout << 2.0l * sqrtl(n * M_PI) << endl;
return 0;
}
はむこ