結果

問題 No.1273 はじめのζ関数
ユーザー tanon710
提出日時 2020-10-30 22:33:18
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 476 bytes
コンパイル時間 250 ms
コンパイル使用メモリ 82,128 KB
実行使用メモリ 98,104 KB
最終ジャッジ日時 2024-07-22 01:54:12
合計ジャッジ時間 6,618 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample -- * 1
other TLE * 1 -- * 39
権限があれば一括ダウンロードができます

ソースコード

diff #

import math
import decimal

decimal.getcontext().prec=1000

def zeta(n):
    if n==3:
        return decimal.Decimal(0.202056903159594)
    else:
        ret=decimal.Decimal(0)
        for i in range(2,200):
            ret+=decimal.Decimal(1)/decimal.Decimal(i**n)
        return ret

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