結果

問題 No.1273 はじめのζ関数
ユーザー taiga000629taiga000629
提出日時 2020-11-06 21:07:50
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 190 bytes
コンパイル時間 391 ms
コンパイル使用メモリ 82,444 KB
実行使用メモリ 75,408 KB
最終ジャッジ日時 2024-07-22 11:58:25
合計ジャッジ時間 4,032 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 58 ms
75,008 KB
testcase_01 AC 62 ms
75,264 KB
testcase_02 AC 65 ms
75,304 KB
testcase_03 AC 68 ms
75,008 KB
testcase_04 AC 65 ms
75,008 KB
testcase_05 AC 42 ms
58,752 KB
testcase_06 AC 67 ms
75,264 KB
testcase_07 AC 60 ms
75,264 KB
testcase_08 AC 63 ms
75,264 KB
testcase_09 AC 64 ms
75,264 KB
testcase_10 AC 65 ms
75,392 KB
testcase_11 AC 47 ms
62,464 KB
testcase_12 AC 60 ms
75,264 KB
testcase_13 AC 64 ms
75,264 KB
testcase_14 AC 61 ms
75,264 KB
testcase_15 AC 63 ms
75,008 KB
testcase_16 AC 62 ms
75,136 KB
testcase_17 AC 64 ms
75,392 KB
testcase_18 AC 64 ms
75,408 KB
testcase_19 AC 66 ms
75,252 KB
testcase_20 WA -
testcase_21 AC 53 ms
67,328 KB
testcase_22 AC 38 ms
52,352 KB
testcase_23 AC 40 ms
54,784 KB
testcase_24 AC 39 ms
53,632 KB
testcase_25 AC 42 ms
55,424 KB
testcase_26 AC 62 ms
70,656 KB
testcase_27 AC 62 ms
70,656 KB
testcase_28 AC 56 ms
67,968 KB
testcase_29 AC 63 ms
70,784 KB
testcase_30 AC 55 ms
67,072 KB
testcase_31 AC 43 ms
56,448 KB
testcase_32 AC 57 ms
68,352 KB
testcase_33 AC 42 ms
56,320 KB
testcase_34 AC 46 ms
56,960 KB
testcase_35 AC 40 ms
52,224 KB
testcase_36 AC 52 ms
65,664 KB
testcase_37 AC 54 ms
67,328 KB
testcase_38 AC 49 ms
62,208 KB
testcase_39 AC 46 ms
58,240 KB
testcase_40 AC 41 ms
58,044 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

x=int(input())
ans=0
if 2<=x<=100:
    for k in range(2,10000):
        ans+=10**6/(k**(x-1)*(k-1))

else:
    for k in range(2,100):
        ans+=10**6/(k**(x-1)*(k-1))

print(int(ans))



0