結果

問題 No.1273 はじめのζ関数
ユーザー tanon710tanon710
提出日時 2020-10-30 22:22:45
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 350 bytes
コンパイル時間 154 ms
コンパイル使用メモリ 82,092 KB
実行使用メモリ 75,676 KB
最終ジャッジ日時 2024-07-22 01:21:38
合計ジャッジ時間 4,131 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 113 ms
75,520 KB
testcase_01 AC 108 ms
75,472 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 AC 102 ms
75,524 KB
testcase_05 WA -
testcase_06 WA -
testcase_07 AC 104 ms
75,592 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 AC 107 ms
75,376 KB
testcase_12 AC 103 ms
75,388 KB
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 AC 101 ms
75,132 KB
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 AC 39 ms
52,796 KB
testcase_22 AC 37 ms
52,684 KB
testcase_23 AC 35 ms
53,680 KB
testcase_24 AC 35 ms
54,036 KB
testcase_25 AC 36 ms
53,076 KB
testcase_26 AC 35 ms
53,084 KB
testcase_27 AC 37 ms
52,664 KB
testcase_28 AC 38 ms
52,996 KB
testcase_29 AC 35 ms
53,672 KB
testcase_30 AC 38 ms
52,948 KB
testcase_31 AC 38 ms
53,196 KB
testcase_32 AC 36 ms
52,196 KB
testcase_33 AC 36 ms
52,592 KB
testcase_34 AC 36 ms
53,484 KB
testcase_35 AC 35 ms
53,788 KB
testcase_36 AC 37 ms
52,692 KB
testcase_37 AC 36 ms
52,612 KB
testcase_38 AC 38 ms
52,148 KB
testcase_39 AC 37 ms
53,276 KB
testcase_40 AC 108 ms
75,400 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import math

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

n=int(input())
if n>=200:
    print(0)
else:
    ans=0
    for i in range(n,200):
        ans+=zeta(i)
    print(int(str(ans)[2:8]))
0