結果

問題 No.2971 無理積分
ユーザー 👑 p-adicp-adic
提出日時 2023-08-25 14:34:22
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 44 ms / 1,000 ms
コード長 73 bytes
コンパイル時間 161 ms
コンパイル使用メモリ 82,508 KB
実行使用メモリ 60,888 KB
最終ジャッジ日時 2024-08-16 01:00:36
合計ジャッジ時間 2,956 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
59,656 KB
testcase_01 AC 43 ms
59,300 KB
testcase_02 AC 41 ms
60,092 KB
testcase_03 AC 41 ms
60,360 KB
testcase_04 AC 40 ms
59,408 KB
testcase_05 AC 42 ms
59,160 KB
testcase_06 AC 38 ms
59,704 KB
testcase_07 AC 41 ms
60,692 KB
testcase_08 AC 40 ms
59,712 KB
testcase_09 AC 41 ms
59,628 KB
testcase_10 AC 42 ms
60,388 KB
testcase_11 AC 44 ms
60,544 KB
testcase_12 AC 40 ms
59,756 KB
testcase_13 AC 41 ms
60,012 KB
testcase_14 AC 43 ms
59,352 KB
testcase_15 AC 42 ms
59,972 KB
testcase_16 AC 42 ms
59,700 KB
testcase_17 AC 41 ms
60,800 KB
testcase_18 AC 41 ms
60,676 KB
testcase_19 AC 40 ms
59,696 KB
testcase_20 AC 41 ms
60,108 KB
testcase_21 AC 41 ms
59,760 KB
testcase_22 AC 41 ms
59,924 KB
testcase_23 AC 40 ms
60,888 KB
testcase_24 AC 44 ms
59,752 KB
testcase_25 AC 43 ms
60,168 KB
testcase_26 AC 44 ms
60,748 KB
testcase_27 AC 41 ms
59,828 KB
testcase_28 AC 41 ms
60,008 KB
testcase_29 AC 43 ms
59,400 KB
testcase_30 AC 40 ms
60,404 KB
testcase_31 AC 43 ms
60,612 KB
testcase_32 AC 42 ms
60,420 KB
testcase_33 AC 42 ms
59,760 KB
testcase_34 AC 40 ms
59,528 KB
testcase_35 AC 42 ms
59,408 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N=int(input())
c=9999
print(sum(((i/c)**3+N**3)**0.5for i in range(c))/c)
0