結果

問題 No.1273 はじめのζ関数
ユーザー marroncastlemarroncastle
提出日時 2020-10-30 22:22:47
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 160 bytes
コンパイル時間 291 ms
コンパイル使用メモリ 87,092 KB
実行使用メモリ 77,516 KB
最終ジャッジ日時 2023-09-29 06:53:01
合計ジャッジ時間 32,243 ms
ジャッジサーバーID
(参考情報)
judge15 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 TLE -
testcase_01 AC 1,982 ms
77,168 KB
testcase_02 AC 108 ms
77,260 KB
testcase_03 AC 78 ms
76,084 KB
testcase_04 AC 1,551 ms
77,104 KB
testcase_05 TLE -
testcase_06 AC 80 ms
76,108 KB
testcase_07 AC 1,842 ms
77,116 KB
testcase_08 AC 77 ms
76,072 KB
testcase_09 AC 87 ms
77,200 KB
testcase_10 AC 78 ms
76,384 KB
testcase_11 TLE -
testcase_12 TLE -
testcase_13 AC 77 ms
76,108 KB
testcase_14 AC 1,098 ms
76,932 KB
testcase_15 AC 802 ms
77,004 KB
testcase_16 AC 954 ms
77,132 KB
testcase_17 AC 1,396 ms
77,332 KB
testcase_18 AC 111 ms
76,988 KB
testcase_19 AC 99 ms
77,304 KB
testcase_20 TLE -
testcase_21 AC 76 ms
76,248 KB
testcase_22 AC 77 ms
76,340 KB
testcase_23 AC 79 ms
76,236 KB
testcase_24 AC 78 ms
75,872 KB
testcase_25 AC 77 ms
76,152 KB
testcase_26 AC 69 ms
71,436 KB
testcase_27 AC 72 ms
71,424 KB
testcase_28 AC 72 ms
71,248 KB
testcase_29 AC 74 ms
71,080 KB
testcase_30 AC 79 ms
75,872 KB
testcase_31 AC 77 ms
76,140 KB
testcase_32 AC 73 ms
70,996 KB
testcase_33 AC 77 ms
76,380 KB
testcase_34 AC 79 ms
76,288 KB
testcase_35 AC 77 ms
76,116 KB
testcase_36 AC 75 ms
76,288 KB
testcase_37 AC 75 ms
76,288 KB
testcase_38 AC 77 ms
76,240 KB
testcase_39 AC 77 ms
76,368 KB
testcase_40 TLE -
権限があれば一括ダウンロードができます

ソースコード

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**100:
      break
    ans += 10**6/a
print(int(ans))
0