結果

問題 No.1235 ζ関数
ユーザー hir355hir355
提出日時 2020-10-24 23:49:40
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 741 ms / 2,000 ms
コード長 85 bytes
コンパイル時間 178 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 76,032 KB
最終ジャッジ日時 2024-07-21 15:57:40
合計ジャッジ時間 6,921 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
51,840 KB
testcase_01 AC 417 ms
72,960 KB
testcase_02 AC 137 ms
70,656 KB
testcase_03 AC 489 ms
73,344 KB
testcase_04 AC 38 ms
51,712 KB
testcase_05 AC 158 ms
71,168 KB
testcase_06 AC 71 ms
70,912 KB
testcase_07 AC 741 ms
76,032 KB
testcase_08 AC 185 ms
71,168 KB
testcase_09 AC 420 ms
73,216 KB
testcase_10 AC 481 ms
72,576 KB
testcase_11 AC 487 ms
73,472 KB
testcase_12 AC 194 ms
71,296 KB
testcase_13 AC 498 ms
73,660 KB
testcase_14 AC 126 ms
70,912 KB
testcase_15 AC 483 ms
73,856 KB
testcase_16 AC 39 ms
51,840 KB
testcase_17 AC 243 ms
71,168 KB
testcase_18 AC 78 ms
70,656 KB
testcase_19 AC 581 ms
74,752 KB
testcase_20 AC 75 ms
70,656 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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