結果

問題 No.1273 はじめのζ関数
ユーザー tanon710
提出日時 2020-10-30 22:28:04
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 506 bytes
コンパイル時間 178 ms
コンパイル使用メモリ 82,560 KB
実行使用メモリ 84,736 KB
最終ジャッジ日時 2024-07-22 01:42:02
合計ジャッジ時間 21,945 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 1
other AC * 38 WA * 2
権限があれば一括ダウンロードができます

ソースコード

diff #

import math
import decimal

decimal.getcontext().prec=100

def zeta(n):
    if n==2:
        return math.pi**2/6-1
    elif n==3:
        return decimal.Decimal(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)
elif n==2:
    print(999999)
else:
    ans=decimal.Decimal(0)
    for i in range(n,300):
        ans+=zeta(i)
    print(int(ans*(10**6)))
0