結果

問題 No.1273 はじめのζ関数
ユーザー marroncastlemarroncastle
提出日時 2020-10-30 22:26:37
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 159 bytes
コンパイル時間 306 ms
コンパイル使用メモリ 86,968 KB
実行使用メモリ 77,256 KB
最終ジャッジ日時 2023-09-29 07:03:18
合計ジャッジ時間 5,529 ms
ジャッジサーバーID
(参考情報)
judge14 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 87 ms
76,424 KB
testcase_01 AC 86 ms
76,452 KB
testcase_02 AC 86 ms
76,580 KB
testcase_03 AC 86 ms
76,476 KB
testcase_04 AC 90 ms
76,268 KB
testcase_05 AC 92 ms
77,256 KB
testcase_06 AC 86 ms
76,596 KB
testcase_07 AC 86 ms
76,324 KB
testcase_08 AC 86 ms
76,336 KB
testcase_09 AC 87 ms
76,344 KB
testcase_10 AC 88 ms
76,660 KB
testcase_11 AC 88 ms
76,812 KB
testcase_12 AC 87 ms
76,452 KB
testcase_13 AC 87 ms
76,424 KB
testcase_14 AC 86 ms
76,328 KB
testcase_15 AC 88 ms
76,552 KB
testcase_16 AC 87 ms
76,444 KB
testcase_17 AC 85 ms
76,664 KB
testcase_18 AC 87 ms
76,544 KB
testcase_19 AC 88 ms
76,600 KB
testcase_20 WA -
testcase_21 AC 85 ms
76,476 KB
testcase_22 AC 88 ms
76,716 KB
testcase_23 AC 86 ms
76,452 KB
testcase_24 AC 87 ms
76,504 KB
testcase_25 AC 87 ms
76,264 KB
testcase_26 AC 85 ms
76,272 KB
testcase_27 AC 85 ms
76,440 KB
testcase_28 AC 86 ms
76,480 KB
testcase_29 AC 84 ms
76,780 KB
testcase_30 AC 87 ms
76,688 KB
testcase_31 AC 87 ms
76,212 KB
testcase_32 AC 88 ms
76,416 KB
testcase_33 AC 87 ms
76,328 KB
testcase_34 AC 86 ms
76,716 KB
testcase_35 AC 87 ms
76,544 KB
testcase_36 AC 85 ms
76,328 KB
testcase_37 AC 85 ms
76,424 KB
testcase_38 AC 85 ms
76,540 KB
testcase_39 AC 89 ms
76,464 KB
testcase_40 AC 93 ms
77,020 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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