結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 59 ms
75,136 KB
testcase_01 AC 63 ms
75,136 KB
testcase_02 AC 67 ms
75,008 KB
testcase_03 AC 68 ms
75,264 KB
testcase_04 AC 61 ms
75,448 KB
testcase_05 AC 47 ms
60,672 KB
testcase_06 AC 63 ms
75,264 KB
testcase_07 AC 60 ms
75,264 KB
testcase_08 AC 64 ms
75,264 KB
testcase_09 AC 64 ms
75,440 KB
testcase_10 AC 63 ms
75,136 KB
testcase_11 AC 46 ms
62,208 KB
testcase_12 AC 61 ms
75,264 KB
testcase_13 AC 64 ms
75,264 KB
testcase_14 AC 62 ms
75,008 KB
testcase_15 AC 61 ms
75,240 KB
testcase_16 AC 62 ms
75,392 KB
testcase_17 AC 64 ms
75,136 KB
testcase_18 AC 63 ms
75,264 KB
testcase_19 AC 65 ms
75,264 KB
testcase_20 WA -
testcase_21 AC 55 ms
66,816 KB
testcase_22 AC 40 ms
52,224 KB
testcase_23 AC 42 ms
55,040 KB
testcase_24 AC 41 ms
54,016 KB
testcase_25 AC 42 ms
55,168 KB
testcase_26 AC 61 ms
70,784 KB
testcase_27 AC 61 ms
70,660 KB
testcase_28 AC 55 ms
68,096 KB
testcase_29 AC 62 ms
70,912 KB
testcase_30 AC 54 ms
66,688 KB
testcase_31 AC 43 ms
56,320 KB
testcase_32 AC 57 ms
68,352 KB
testcase_33 AC 44 ms
56,448 KB
testcase_34 AC 44 ms
56,576 KB
testcase_35 AC 39 ms
52,736 KB
testcase_36 AC 53 ms
65,408 KB
testcase_37 AC 55 ms
67,712 KB
testcase_38 AC 49 ms
62,080 KB
testcase_39 AC 47 ms
58,496 KB
testcase_40 AC 45 ms
60,416 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

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

print(int(ans)//10**12)



0