結果

問題 No.1235 ζ関数
ユーザー convexineqconvexineq
提出日時 2021-03-30 05:41:19
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 728 ms / 2,000 ms
コード長 76 bytes
コンパイル時間 258 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 76,032 KB
最終ジャッジ日時 2024-11-30 02:03:41
合計ジャッジ時間 7,148 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
51,456 KB
testcase_01 AC 415 ms
72,832 KB
testcase_02 AC 138 ms
70,912 KB
testcase_03 AC 479 ms
73,344 KB
testcase_04 AC 39 ms
51,584 KB
testcase_05 AC 162 ms
70,656 KB
testcase_06 AC 80 ms
70,400 KB
testcase_07 AC 728 ms
76,032 KB
testcase_08 AC 192 ms
71,168 KB
testcase_09 AC 422 ms
72,192 KB
testcase_10 AC 442 ms
72,704 KB
testcase_11 AC 482 ms
73,344 KB
testcase_12 AC 197 ms
70,912 KB
testcase_13 AC 490 ms
73,600 KB
testcase_14 AC 136 ms
70,656 KB
testcase_15 AC 479 ms
73,216 KB
testcase_16 AC 39 ms
51,584 KB
testcase_17 AC 243 ms
70,912 KB
testcase_18 AC 84 ms
70,656 KB
testcase_19 AC 574 ms
74,752 KB
testcase_20 AC 85 ms
70,656 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
ans = 1
for i in range(2,100):
    ans += 1/i**n
print(ans)
0