結果

問題 No.1273 はじめのζ関数
ユーザー marroncastlemarroncastle
提出日時 2020-10-30 22:23:13
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 159 bytes
コンパイル時間 740 ms
コンパイル使用メモリ 87,268 KB
実行使用メモリ 77,504 KB
最終ジャッジ日時 2023-09-29 06:55:28
合計ジャッジ時間 11,909 ms
ジャッジサーバーID
(参考情報)
judge14 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 887 ms
77,452 KB
testcase_01 AC 332 ms
77,204 KB
testcase_02 AC 81 ms
76,260 KB
testcase_03 AC 80 ms
76,288 KB
testcase_04 AC 110 ms
77,116 KB
testcase_05 AC 1,098 ms
77,416 KB
testcase_06 AC 76 ms
76,388 KB
testcase_07 AC 179 ms
76,968 KB
testcase_08 AC 77 ms
76,156 KB
testcase_09 AC 77 ms
76,236 KB
testcase_10 AC 76 ms
76,448 KB
testcase_11 AC 1,031 ms
77,420 KB
testcase_12 AC 612 ms
77,316 KB
testcase_13 AC 76 ms
76,292 KB
testcase_14 AC 92 ms
77,504 KB
testcase_15 AC 87 ms
77,164 KB
testcase_16 AC 88 ms
77,136 KB
testcase_17 AC 104 ms
77,136 KB
testcase_18 AC 82 ms
76,424 KB
testcase_19 AC 81 ms
76,236 KB
testcase_20 WA -
testcase_21 AC 74 ms
76,136 KB
testcase_22 AC 75 ms
76,264 KB
testcase_23 AC 75 ms
76,296 KB
testcase_24 AC 76 ms
76,392 KB
testcase_25 AC 77 ms
76,260 KB
testcase_26 AC 72 ms
71,132 KB
testcase_27 AC 70 ms
71,272 KB
testcase_28 AC 70 ms
71,384 KB
testcase_29 AC 69 ms
71,424 KB
testcase_30 AC 76 ms
76,172 KB
testcase_31 AC 76 ms
76,380 KB
testcase_32 AC 71 ms
71,372 KB
testcase_33 AC 76 ms
76,436 KB
testcase_34 AC 77 ms
76,284 KB
testcase_35 AC 76 ms
76,320 KB
testcase_36 AC 76 ms
76,332 KB
testcase_37 AC 75 ms
76,028 KB
testcase_38 AC 77 ms
76,152 KB
testcase_39 AC 77 ms
76,120 KB
testcase_40 AC 1,100 ms
77,380 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

ans = 0
x = int(input())
for i in range(x,10**4+1):
  for j in range(2,10**5):
    a = pow(j,i)
    if a>10**50:
      break
    ans += 10**6/a
print(int(ans))
0