結果

問題 No.1273 はじめのζ関数
ユーザー titiatitia
提出日時 2020-10-31 01:36:24
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 218 bytes
コンパイル時間 309 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 63,488 KB
最終ジャッジ日時 2024-07-22 04:15:08
合計ジャッジ時間 48,193 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,108 ms
58,240 KB
testcase_01 WA -
testcase_02 AC 1,111 ms
58,240 KB
testcase_03 AC 1,112 ms
58,368 KB
testcase_04 AC 1,111 ms
58,368 KB
testcase_05 AC 1,111 ms
58,496 KB
testcase_06 AC 1,110 ms
58,752 KB
testcase_07 AC 1,111 ms
58,496 KB
testcase_08 AC 1,108 ms
58,752 KB
testcase_09 AC 1,110 ms
58,368 KB
testcase_10 AC 1,113 ms
58,624 KB
testcase_11 AC 1,118 ms
58,496 KB
testcase_12 AC 1,120 ms
58,496 KB
testcase_13 AC 1,112 ms
58,624 KB
testcase_14 AC 1,107 ms
58,624 KB
testcase_15 AC 1,106 ms
58,624 KB
testcase_16 AC 1,116 ms
58,240 KB
testcase_17 AC 1,110 ms
58,368 KB
testcase_18 AC 1,111 ms
58,240 KB
testcase_19 AC 1,108 ms
58,624 KB
testcase_20 AC 43 ms
51,840 KB
testcase_21 AC 1,122 ms
63,488 KB
testcase_22 AC 1,137 ms
61,440 KB
testcase_23 AC 1,121 ms
63,360 KB
testcase_24 AC 1,123 ms
63,232 KB
testcase_25 AC 1,125 ms
63,104 KB
testcase_26 AC 1,123 ms
63,232 KB
testcase_27 AC 1,131 ms
63,360 KB
testcase_28 AC 1,128 ms
63,488 KB
testcase_29 AC 1,129 ms
63,104 KB
testcase_30 AC 1,120 ms
63,232 KB
testcase_31 AC 1,123 ms
63,232 KB
testcase_32 AC 1,124 ms
63,360 KB
testcase_33 AC 1,122 ms
63,232 KB
testcase_34 AC 1,127 ms
63,360 KB
testcase_35 AC 1,124 ms
62,592 KB
testcase_36 AC 1,130 ms
63,232 KB
testcase_37 AC 1,124 ms
63,232 KB
testcase_38 AC 1,123 ms
63,232 KB
testcase_39 AC 1,124 ms
63,104 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**(-15):
            break
    return Z

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

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