結果

問題 No.1273 はじめのζ関数
ユーザー tanon710tanon710
提出日時 2020-10-30 22:21:17
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 345 bytes
コンパイル時間 254 ms
コンパイル使用メモリ 82,976 KB
実行使用メモリ 76,020 KB
最終ジャッジ日時 2024-07-22 01:15:16
合計ジャッジ時間 4,452 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 AC 39 ms
52,324 KB
testcase_22 AC 39 ms
53,080 KB
testcase_23 AC 39 ms
52,748 KB
testcase_24 AC 38 ms
52,864 KB
testcase_25 AC 39 ms
52,200 KB
testcase_26 AC 39 ms
52,124 KB
testcase_27 AC 39 ms
53,480 KB
testcase_28 AC 38 ms
53,488 KB
testcase_29 AC 38 ms
52,468 KB
testcase_30 AC 38 ms
52,772 KB
testcase_31 AC 37 ms
53,104 KB
testcase_32 AC 40 ms
52,924 KB
testcase_33 AC 38 ms
53,592 KB
testcase_34 AC 37 ms
52,332 KB
testcase_35 AC 38 ms
53,248 KB
testcase_36 AC 37 ms
52,224 KB
testcase_37 AC 38 ms
53,208 KB
testcase_38 AC 39 ms
52,872 KB
testcase_39 AC 39 ms
53,260 KB
testcase_40 AC 112 ms
75,728 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(str(ans)[2:8])
0