結果

問題 No.1273 はじめのζ関数
ユーザー tanon710tanon710
提出日時 2020-10-30 22:25:38
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 429 bytes
コンパイル時間 546 ms
コンパイル使用メモリ 82,564 KB
実行使用メモリ 84,680 KB
最終ジャッジ日時 2024-07-22 01:37:27
合計ジャッジ時間 17,281 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 696 ms
83,780 KB
testcase_01 AC 693 ms
84,052 KB
testcase_02 AC 665 ms
84,412 KB
testcase_03 AC 602 ms
83,388 KB
testcase_04 AC 695 ms
84,680 KB
testcase_05 WA -
testcase_06 AC 621 ms
84,540 KB
testcase_07 AC 682 ms
84,108 KB
testcase_08 AC 602 ms
83,396 KB
testcase_09 AC 650 ms
83,456 KB
testcase_10 AC 599 ms
83,608 KB
testcase_11 AC 694 ms
84,156 KB
testcase_12 AC 698 ms
84,292 KB
testcase_13 AC 109 ms
80,304 KB
testcase_14 AC 685 ms
84,164 KB
testcase_15 AC 684 ms
84,656 KB
testcase_16 AC 686 ms
84,228 KB
testcase_17 AC 691 ms
83,768 KB
testcase_18 AC 677 ms
84,664 KB
testcase_19 AC 663 ms
84,400 KB
testcase_20 RE -
testcase_21 AC 110 ms
80,188 KB
testcase_22 AC 111 ms
80,136 KB
testcase_23 AC 109 ms
80,220 KB
testcase_24 AC 110 ms
80,152 KB
testcase_25 AC 108 ms
80,280 KB
testcase_26 AC 109 ms
80,292 KB
testcase_27 AC 106 ms
80,240 KB
testcase_28 AC 105 ms
79,924 KB
testcase_29 AC 105 ms
80,112 KB
testcase_30 AC 104 ms
79,876 KB
testcase_31 AC 110 ms
80,168 KB
testcase_32 AC 106 ms
80,056 KB
testcase_33 AC 107 ms
80,340 KB
testcase_34 AC 106 ms
80,280 KB
testcase_35 AC 103 ms
80,196 KB
testcase_36 AC 105 ms
79,868 KB
testcase_37 AC 108 ms
80,284 KB
testcase_38 AC 107 ms
79,996 KB
testcase_39 AC 104 ms
80,196 KB
testcase_40 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

import math
import decimal

def zeta(n):
    if n==2:
        return math.pi**2/6-1
    elif n==3:
        return 0.202056903159594
    else:
        ret=decimal.Decimal(0)
        for i in range(2,100):
            ret+=decimal.Decimal(1)/decimal.Decimal(i**n)
        return ret

n=int(input())
if n>=100:
    print(0)
else:
    ans=decimal.Decimal(0)
    for i in range(n,300):
        ans+=zeta(i)
    print(int(ans*(10**6)))
0