結果

問題 No.1273 はじめのζ関数
ユーザー marroncastlemarroncastle
提出日時 2020-10-30 22:22:47
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 160 bytes
コンパイル時間 188 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 76,288 KB
最終ジャッジ日時 2024-07-22 01:26:05
合計ジャッジ時間 28,100 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 TLE -
testcase_01 AC 1,804 ms
75,776 KB
testcase_02 AC 78 ms
75,688 KB
testcase_03 AC 47 ms
68,224 KB
testcase_04 AC 1,406 ms
75,856 KB
testcase_05 TLE -
testcase_06 AC 47 ms
68,736 KB
testcase_07 AC 1,657 ms
75,684 KB
testcase_08 AC 46 ms
67,712 KB
testcase_09 AC 56 ms
75,832 KB
testcase_10 AC 47 ms
67,712 KB
testcase_11 TLE -
testcase_12 TLE -
testcase_13 AC 47 ms
67,968 KB
testcase_14 AC 991 ms
75,776 KB
testcase_15 AC 710 ms
75,892 KB
testcase_16 AC 840 ms
76,084 KB
testcase_17 AC 1,260 ms
76,132 KB
testcase_18 AC 79 ms
76,140 KB
testcase_19 AC 72 ms
75,776 KB
testcase_20 TLE -
testcase_21 AC 43 ms
60,928 KB
testcase_22 AC 45 ms
66,304 KB
testcase_23 AC 44 ms
65,280 KB
testcase_24 AC 46 ms
65,792 KB
testcase_25 AC 45 ms
65,280 KB
testcase_26 AC 38 ms
51,584 KB
testcase_27 AC 37 ms
51,456 KB
testcase_28 AC 39 ms
53,888 KB
testcase_29 AC 37 ms
52,352 KB
testcase_30 AC 43 ms
61,312 KB
testcase_31 AC 44 ms
65,024 KB
testcase_32 AC 38 ms
53,632 KB
testcase_33 AC 45 ms
64,640 KB
testcase_34 AC 43 ms
64,768 KB
testcase_35 AC 45 ms
66,304 KB
testcase_36 AC 43 ms
61,312 KB
testcase_37 AC 42 ms
60,032 KB
testcase_38 AC 43 ms
62,720 KB
testcase_39 AC 43 ms
63,616 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