結果

問題 No.1235 ζ関数
ユーザー rlangevinrlangevin
提出日時 2023-01-01 19:29:44
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 95 ms / 2,000 ms
コード長 81 bytes
コンパイル時間 426 ms
コンパイル使用メモリ 82,604 KB
実行使用メモリ 71,296 KB
最終ジャッジ日時 2024-05-05 05:55:39
合計ジャッジ時間 2,256 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
51,968 KB
testcase_01 AC 71 ms
70,944 KB
testcase_02 AC 42 ms
58,536 KB
testcase_03 AC 69 ms
70,984 KB
testcase_04 AC 38 ms
51,968 KB
testcase_05 AC 48 ms
60,160 KB
testcase_06 AC 39 ms
53,888 KB
testcase_07 AC 95 ms
71,296 KB
testcase_08 AC 45 ms
62,492 KB
testcase_09 AC 64 ms
70,992 KB
testcase_10 AC 72 ms
70,996 KB
testcase_11 AC 70 ms
71,140 KB
testcase_12 AC 50 ms
63,232 KB
testcase_13 AC 77 ms
71,040 KB
testcase_14 AC 40 ms
59,728 KB
testcase_15 AC 68 ms
70,976 KB
testcase_16 AC 38 ms
52,096 KB
testcase_17 AC 56 ms
68,296 KB
testcase_18 AC 41 ms
54,272 KB
testcase_19 AC 83 ms
71,168 KB
testcase_20 AC 36 ms
55,416 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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