結果

問題 No.1235 ζ関数
ユーザー Co-3Co-3
提出日時 2020-09-21 22:49:06
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,615 ms / 2,000 ms
コード長 76 bytes
コンパイル時間 146 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 11,136 KB
最終ジャッジ日時 2024-06-24 21:37:30
合計ジャッジ時間 13,202 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,624 KB
testcase_01 AC 905 ms
11,008 KB
testcase_02 AC 233 ms
10,752 KB
testcase_03 AC 1,066 ms
11,136 KB
testcase_04 AC 30 ms
10,752 KB
testcase_05 AC 287 ms
10,880 KB
testcase_06 AC 95 ms
10,752 KB
testcase_07 AC 1,615 ms
11,136 KB
testcase_08 AC 363 ms
10,880 KB
testcase_09 AC 897 ms
11,008 KB
testcase_10 AC 947 ms
11,008 KB
testcase_11 AC 1,066 ms
11,008 KB
testcase_12 AC 385 ms
10,880 KB
testcase_13 AC 1,099 ms
11,136 KB
testcase_14 AC 218 ms
10,752 KB
testcase_15 AC 1,057 ms
11,008 KB
testcase_16 AC 30 ms
10,752 KB
testcase_17 AC 483 ms
11,008 KB
testcase_18 AC 109 ms
10,752 KB
testcase_19 AC 1,261 ms
11,008 KB
testcase_20 AC 103 ms
10,880 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

a = int(input())
b = 0
for i in range(100):
    b += (1/((i+1)**a))
print(b)
0