結果

問題 No.1273 はじめのζ関数
ユーザー ayaoniayaoni
提出日時 2020-10-30 21:37:23
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 611 bytes
コンパイル時間 372 ms
コンパイル使用メモリ 82,372 KB
実行使用メモリ 60,040 KB
最終ジャッジ日時 2024-07-21 23:38:11
合計ジャッジ時間 2,816 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
59,840 KB
testcase_01 AC 37 ms
52,756 KB
testcase_02 AC 36 ms
52,736 KB
testcase_03 AC 37 ms
53,020 KB
testcase_04 AC 38 ms
52,864 KB
testcase_05 AC 41 ms
59,120 KB
testcase_06 AC 34 ms
52,000 KB
testcase_07 AC 35 ms
53,620 KB
testcase_08 AC 37 ms
52,788 KB
testcase_09 AC 36 ms
52,704 KB
testcase_10 AC 35 ms
53,692 KB
testcase_11 AC 40 ms
59,664 KB
testcase_12 AC 36 ms
52,140 KB
testcase_13 AC 36 ms
52,156 KB
testcase_14 AC 35 ms
52,764 KB
testcase_15 AC 35 ms
52,352 KB
testcase_16 AC 36 ms
53,108 KB
testcase_17 AC 34 ms
52,956 KB
testcase_18 AC 36 ms
52,624 KB
testcase_19 AC 37 ms
52,432 KB
testcase_20 WA -
testcase_21 AC 36 ms
52,120 KB
testcase_22 AC 35 ms
53,972 KB
testcase_23 AC 37 ms
52,392 KB
testcase_24 AC 36 ms
53,012 KB
testcase_25 AC 37 ms
52,336 KB
testcase_26 AC 36 ms
52,136 KB
testcase_27 AC 36 ms
52,944 KB
testcase_28 AC 35 ms
52,756 KB
testcase_29 AC 35 ms
52,344 KB
testcase_30 AC 35 ms
52,460 KB
testcase_31 AC 36 ms
53,368 KB
testcase_32 AC 35 ms
53,132 KB
testcase_33 AC 37 ms
52,268 KB
testcase_34 AC 37 ms
53,412 KB
testcase_35 AC 36 ms
52,364 KB
testcase_36 AC 37 ms
53,944 KB
testcase_37 AC 36 ms
52,316 KB
testcase_38 AC 36 ms
52,376 KB
testcase_39 AC 36 ms
53,900 KB
testcase_40 AC 40 ms
59,816 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

sys.setrecursionlimit(10**7)
def I(): return int(sys.stdin.readline().rstrip())
def MI(): return map(int,sys.stdin.readline().rstrip().split())
def LI(): return list(map(int,sys.stdin.readline().rstrip().split()))
def LI2(): return list(map(int,sys.stdin.readline().rstrip()))
def S(): return sys.stdin.readline().rstrip()
def LS(): return list(sys.stdin.readline().rstrip().split())
def LS2(): return list(sys.stdin.readline().rstrip())


x = I()
ans = 0
for i in range(2,10000):
    if pow(i,x-1) <= 10**16:
        ans += (1/i**(x-1))/(i-1)
    else:
        break
        
print(int(ans*10**6))
0