結果

問題 No.508 超ゆとり教育
ユーザー rlangevinrlangevin
提出日時 2024-08-08 08:58:29
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 110 bytes
コンパイル時間 304 ms
コンパイル使用メモリ 82,324 KB
実行使用メモリ 80,632 KB
最終ジャッジ日時 2024-08-08 08:58:32
合計ジャッジ時間 2,353 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 116 ms
80,148 KB
testcase_01 WA -
testcase_02 AC 111 ms
79,960 KB
testcase_03 AC 117 ms
80,264 KB
testcase_04 AC 114 ms
80,036 KB
testcase_05 AC 115 ms
80,220 KB
testcase_06 AC 112 ms
80,632 KB
testcase_07 AC 114 ms
80,032 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from decimal import *
from math import *
n = Decimal(int(input()))
ans = sqrt(n / Decimal(pi))
print(int(ans))
0