結果

問題 No.2466 Root! Root! Root!
ユーザー 👑 p-adicp-adic
提出日時 2023-09-08 08:51:39
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 81 bytes
コンパイル時間 358 ms
コンパイル使用メモリ 86,212 KB
実行使用メモリ 76,860 KB
最終ジャッジ日時 2023-09-10 20:31:10
合計ジャッジ時間 25,336 ms
ジャッジサーバーID
(参考情報)
judge13 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 890 ms
76,428 KB
testcase_01 AC 890 ms
76,452 KB
testcase_02 AC 888 ms
76,540 KB
testcase_03 AC 892 ms
76,732 KB
testcase_04 AC 885 ms
76,732 KB
testcase_05 WA -
testcase_06 AC 887 ms
76,852 KB
testcase_07 AC 888 ms
76,636 KB
testcase_08 AC 890 ms
76,452 KB
testcase_09 AC 889 ms
76,736 KB
testcase_10 AC 892 ms
76,728 KB
testcase_11 AC 887 ms
76,776 KB
testcase_12 AC 883 ms
76,732 KB
testcase_13 AC 887 ms
76,632 KB
testcase_14 AC 889 ms
76,860 KB
testcase_15 AC 891 ms
76,796 KB
testcase_16 AC 893 ms
76,652 KB
testcase_17 AC 889 ms
76,632 KB
testcase_18 AC 890 ms
76,532 KB
testcase_19 AC 896 ms
76,676 KB
testcase_20 AC 903 ms
76,540 KB
testcase_21 AC 889 ms
76,632 KB
testcase_22 AC 888 ms
76,860 KB
testcase_23 AC 894 ms
76,620 KB
testcase_24 AC 886 ms
76,540 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N=int(input())
a=1
for i in range(N+10000000,N-1,-1):a=(1+i*a)**0.5
print(int(a))
0