結果

問題 No.1273 はじめのζ関数
ユーザー Eki1009Eki1009
提出日時 2020-10-30 22:07:30
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 226 bytes
コンパイル時間 182 ms
コンパイル使用メモリ 82,580 KB
実行使用メモリ 84,740 KB
最終ジャッジ日時 2024-07-22 00:44:40
合計ジャッジ時間 16,834 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 552 ms
82,596 KB
testcase_01 AC 555 ms
75,388 KB
testcase_02 AC 581 ms
75,560 KB
testcase_03 AC 646 ms
75,144 KB
testcase_04 AC 559 ms
75,404 KB
testcase_05 AC 543 ms
75,512 KB
testcase_06 AC 617 ms
75,624 KB
testcase_07 AC 551 ms
75,152 KB
testcase_08 AC 644 ms
75,392 KB
testcase_09 AC 595 ms
75,440 KB
testcase_10 AC 650 ms
75,208 KB
testcase_11 AC 554 ms
75,236 KB
testcase_12 AC 563 ms
75,144 KB
testcase_13 AC 664 ms
75,164 KB
testcase_14 AC 570 ms
75,160 KB
testcase_15 AC 569 ms
75,240 KB
testcase_16 AC 571 ms
75,384 KB
testcase_17 AC 565 ms
75,320 KB
testcase_18 AC 574 ms
75,096 KB
testcase_19 AC 577 ms
75,240 KB
testcase_20 WA -
testcase_21 TLE -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
testcase_32 -- -
testcase_33 -- -
testcase_34 -- -
testcase_35 -- -
testcase_36 -- -
testcase_37 -- -
testcase_38 -- -
testcase_39 -- -
testcase_40 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline
def zeta(n):
    res = 0
    for i in range(1, 1000):
        res += 1/i**n
    return res*10**6
ans = 0
x = int(input())
for i in range(x, x+300):
    ans += zeta(i)-10**6
print(int(ans))
0