結果

問題 No.1273 はじめのζ関数
ユーザー marroncastlemarroncastle
提出日時 2020-10-30 22:54:16
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 180 bytes
コンパイル時間 187 ms
コンパイル使用メモリ 82,024 KB
実行使用メモリ 73,196 KB
最終ジャッジ日時 2024-07-22 02:35:05
合計ジャッジ時間 3,243 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 46 ms
66,952 KB
testcase_01 AC 45 ms
66,608 KB
testcase_02 AC 45 ms
66,708 KB
testcase_03 AC 45 ms
67,768 KB
testcase_04 AC 45 ms
67,412 KB
testcase_05 AC 50 ms
70,380 KB
testcase_06 AC 46 ms
67,752 KB
testcase_07 AC 46 ms
67,284 KB
testcase_08 AC 45 ms
66,616 KB
testcase_09 AC 46 ms
67,456 KB
testcase_10 AC 45 ms
66,468 KB
testcase_11 AC 48 ms
69,352 KB
testcase_12 AC 45 ms
66,924 KB
testcase_13 AC 45 ms
67,388 KB
testcase_14 AC 46 ms
67,416 KB
testcase_15 AC 45 ms
67,132 KB
testcase_16 AC 46 ms
66,904 KB
testcase_17 AC 46 ms
66,896 KB
testcase_18 AC 46 ms
66,544 KB
testcase_19 AC 46 ms
67,204 KB
testcase_20 WA -
testcase_21 AC 44 ms
61,280 KB
testcase_22 AC 45 ms
66,708 KB
testcase_23 AC 45 ms
67,272 KB
testcase_24 AC 46 ms
66,160 KB
testcase_25 AC 44 ms
65,940 KB
testcase_26 AC 38 ms
52,352 KB
testcase_27 AC 39 ms
52,492 KB
testcase_28 AC 39 ms
54,736 KB
testcase_29 AC 38 ms
52,176 KB
testcase_30 AC 43 ms
62,324 KB
testcase_31 AC 44 ms
65,880 KB
testcase_32 AC 40 ms
54,720 KB
testcase_33 AC 46 ms
66,764 KB
testcase_34 AC 43 ms
65,904 KB
testcase_35 AC 46 ms
66,624 KB
testcase_36 AC 44 ms
61,916 KB
testcase_37 AC 43 ms
61,468 KB
testcase_38 AC 44 ms
64,092 KB
testcase_39 AC 45 ms
64,488 KB
testcase_40 AC 50 ms
72,144 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**15:
      break
    ans += 10**6/a
if x==2:
  ans += 1
print(int(ans))
0