結果

問題 No.1235 ζ関数
ユーザー marroncastlemarroncastle
提出日時 2020-10-31 01:17:16
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 754 ms / 2,000 ms
コード長 78 bytes
コンパイル時間 212 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 76,160 KB
最終ジャッジ日時 2024-07-22 04:12:20
合計ジャッジ時間 7,210 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
51,712 KB
testcase_01 AC 424 ms
73,088 KB
testcase_02 AC 134 ms
70,784 KB
testcase_03 AC 499 ms
73,708 KB
testcase_04 AC 40 ms
52,096 KB
testcase_05 AC 160 ms
70,912 KB
testcase_06 AC 73 ms
70,656 KB
testcase_07 AC 754 ms
76,160 KB
testcase_08 AC 187 ms
71,168 KB
testcase_09 AC 428 ms
72,704 KB
testcase_10 AC 450 ms
72,832 KB
testcase_11 AC 491 ms
73,472 KB
testcase_12 AC 194 ms
71,680 KB
testcase_13 AC 503 ms
73,728 KB
testcase_14 AC 132 ms
70,912 KB
testcase_15 AC 497 ms
73,984 KB
testcase_16 AC 40 ms
51,968 KB
testcase_17 AC 244 ms
71,168 KB
testcase_18 AC 78 ms
70,528 KB
testcase_19 AC 586 ms
75,008 KB
testcase_20 AC 79 ms
71,168 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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