結果

問題 No.1273 はじめのζ関数
ユーザー titiatitia
提出日時 2020-10-31 01:37:50
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 218 bytes
コンパイル時間 267 ms
コンパイル使用メモリ 82,684 KB
実行使用メモリ 65,060 KB
最終ジャッジ日時 2024-07-22 04:16:48
合計ジャッジ時間 45,604 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,063 ms
58,808 KB
testcase_01 WA -
testcase_02 AC 1,063 ms
59,128 KB
testcase_03 AC 1,067 ms
60,044 KB
testcase_04 AC 1,065 ms
59,296 KB
testcase_05 AC 1,071 ms
58,628 KB
testcase_06 AC 1,068 ms
58,880 KB
testcase_07 AC 1,070 ms
59,096 KB
testcase_08 AC 1,067 ms
59,252 KB
testcase_09 AC 1,066 ms
60,348 KB
testcase_10 AC 1,056 ms
59,692 KB
testcase_11 AC 1,056 ms
59,988 KB
testcase_12 AC 1,036 ms
59,156 KB
testcase_13 AC 1,047 ms
59,576 KB
testcase_14 AC 1,061 ms
59,144 KB
testcase_15 AC 1,064 ms
60,052 KB
testcase_16 AC 1,069 ms
59,396 KB
testcase_17 AC 1,077 ms
59,964 KB
testcase_18 AC 1,073 ms
58,752 KB
testcase_19 AC 1,054 ms
59,916 KB
testcase_20 AC 38 ms
52,852 KB
testcase_21 AC 1,087 ms
64,052 KB
testcase_22 AC 1,068 ms
63,104 KB
testcase_23 AC 1,097 ms
63,828 KB
testcase_24 AC 1,070 ms
64,220 KB
testcase_25 AC 1,067 ms
64,464 KB
testcase_26 AC 1,076 ms
64,260 KB
testcase_27 AC 1,076 ms
64,756 KB
testcase_28 AC 1,072 ms
64,052 KB
testcase_29 AC 1,065 ms
64,616 KB
testcase_30 AC 1,077 ms
65,028 KB
testcase_31 AC 1,067 ms
64,840 KB
testcase_32 AC 1,060 ms
65,060 KB
testcase_33 AC 1,072 ms
63,600 KB
testcase_34 AC 1,070 ms
64,704 KB
testcase_35 AC 1,067 ms
63,500 KB
testcase_36 AC 1,075 ms
64,596 KB
testcase_37 AC 1,071 ms
64,092 KB
testcase_38 AC 1,070 ms
63,896 KB
testcase_39 AC 1,062 ms
64,200 KB
testcase_40 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

x=int(input())
ANS=1

def zeta(x):
    Z=0
    for i in range(2,10000000):
        Z+=i**(-x)
        if i**(-x)<10**(-14):
            break
    return Z

for i in range(2,x):
    ANS-=zeta(i)

print(int(ANS*(10**6)))
0