結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
51,840 KB
testcase_01 AC 382 ms
73,140 KB
testcase_02 AC 129 ms
70,656 KB
testcase_03 AC 443 ms
73,600 KB
testcase_04 AC 36 ms
51,584 KB
testcase_05 AC 148 ms
71,164 KB
testcase_06 AC 71 ms
70,528 KB
testcase_07 AC 674 ms
76,384 KB
testcase_08 AC 183 ms
71,424 KB
testcase_09 AC 391 ms
72,968 KB
testcase_10 AC 395 ms
72,704 KB
testcase_11 AC 440 ms
73,856 KB
testcase_12 AC 185 ms
71,444 KB
testcase_13 AC 454 ms
73,756 KB
testcase_14 AC 128 ms
70,912 KB
testcase_15 AC 444 ms
73,728 KB
testcase_16 AC 35 ms
51,968 KB
testcase_17 AC 226 ms
71,400 KB
testcase_18 AC 77 ms
70,400 KB
testcase_19 AC 532 ms
75,076 KB
testcase_20 AC 75 ms
71,004 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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