結果

問題 No.1273 はじめのζ関数
ユーザー tanon710tanon710
提出日時 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
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 942 ms
84,324 KB
testcase_01 AC 944 ms
83,712 KB
testcase_02 AC 901 ms
83,968 KB
testcase_03 AC 783 ms
84,224 KB
testcase_04 AC 939 ms
84,004 KB
testcase_05 WA -
testcase_06 AC 791 ms
83,712 KB
testcase_07 AC 921 ms
83,976 KB
testcase_08 AC 743 ms
83,584 KB
testcase_09 AC 842 ms
83,072 KB
testcase_10 AC 751 ms
83,968 KB
testcase_11 AC 940 ms
84,352 KB
testcase_12 AC 926 ms
84,344 KB
testcase_13 AC 106 ms
80,000 KB
testcase_14 AC 900 ms
84,736 KB
testcase_15 AC 900 ms
83,840 KB
testcase_16 AC 914 ms
83,328 KB
testcase_17 AC 894 ms
84,560 KB
testcase_18 AC 867 ms
83,968 KB
testcase_19 AC 873 ms
83,840 KB
testcase_20 WA -
testcase_21 AC 103 ms
80,000 KB
testcase_22 AC 102 ms
80,128 KB
testcase_23 AC 104 ms
79,916 KB
testcase_24 AC 105 ms
80,000 KB
testcase_25 AC 100 ms
80,124 KB
testcase_26 AC 101 ms
80,196 KB
testcase_27 AC 103 ms
80,216 KB
testcase_28 AC 101 ms
79,744 KB
testcase_29 AC 105 ms
80,128 KB
testcase_30 AC 103 ms
80,000 KB
testcase_31 AC 104 ms
80,128 KB
testcase_32 AC 104 ms
80,000 KB
testcase_33 AC 105 ms
79,872 KB
testcase_34 AC 103 ms
80,128 KB
testcase_35 AC 102 ms
79,616 KB
testcase_36 AC 106 ms
80,128 KB
testcase_37 AC 106 ms
80,128 KB
testcase_38 AC 106 ms
80,256 KB
testcase_39 AC 105 ms
79,744 KB
testcase_40 AC 940 ms
83,840 KB
権限があれば一括ダウンロードができます

ソースコード

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