結果

問題 No.1273 はじめのζ関数
ユーザー nagissnagiss
提出日時 2020-10-30 21:41:23
言語 Python3
(3.11.6 + numpy 1.26.0 + scipy 1.11.3)
結果
WA  
実行時間 -
コード長 440 bytes
コンパイル時間 94 ms
コンパイル使用メモリ 10,588 KB
実行使用メモリ 8,280 KB
最終ジャッジ日時 2023-09-29 05:32:09
合計ジャッジ時間 5,294 ms
ジャッジサーバーID
(参考情報)
judge14 / judge13
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 114 ms
8,072 KB
testcase_01 AC 112 ms
7,932 KB
testcase_02 AC 111 ms
7,944 KB
testcase_03 AC 112 ms
7,944 KB
testcase_04 AC 116 ms
7,928 KB
testcase_05 AC 112 ms
8,076 KB
testcase_06 AC 116 ms
7,924 KB
testcase_07 AC 112 ms
7,924 KB
testcase_08 AC 111 ms
7,944 KB
testcase_09 AC 113 ms
7,872 KB
testcase_10 AC 110 ms
7,920 KB
testcase_11 AC 112 ms
8,068 KB
testcase_12 AC 112 ms
7,856 KB
testcase_13 AC 114 ms
7,900 KB
testcase_14 AC 112 ms
7,964 KB
testcase_15 AC 113 ms
7,888 KB
testcase_16 AC 113 ms
7,924 KB
testcase_17 AC 112 ms
7,968 KB
testcase_18 AC 112 ms
7,864 KB
testcase_19 AC 112 ms
7,856 KB
testcase_20 WA -
testcase_21 AC 46 ms
7,980 KB
testcase_22 AC 111 ms
7,924 KB
testcase_23 AC 104 ms
7,932 KB
testcase_24 AC 106 ms
7,892 KB
testcase_25 AC 103 ms
8,088 KB
testcase_26 AC 15 ms
8,032 KB
testcase_27 AC 14 ms
7,972 KB
testcase_28 AC 31 ms
8,036 KB
testcase_29 AC 16 ms
7,928 KB
testcase_30 AC 48 ms
8,032 KB
testcase_31 AC 99 ms
7,852 KB
testcase_32 AC 32 ms
7,904 KB
testcase_33 AC 100 ms
8,068 KB
testcase_34 AC 98 ms
7,944 KB
testcase_35 AC 112 ms
7,888 KB
testcase_36 AC 57 ms
7,976 KB
testcase_37 AC 36 ms
7,972 KB
testcase_38 AC 74 ms
8,280 KB
testcase_39 AC 87 ms
7,948 KB
testcase_40 AC 112 ms
8,056 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from math import pi, floor

def zeta_m1(n):
    if n == 2:
        return pi*pi/6 - 1.0
    elif n == 3:
        return 0.202056903159594
    elif n == 4:
        return pi**4/90 - 1.0
    res = 0
    for i in range(2, 1000):
        denom = i ** n
        if denom > 1e18:
            break
        res += 1 / denom
    return res



X = int(input())
ans = 0
for i in range(X, 10000):
    ans += zeta_m1(i)

print(int(floor(ans*1000000)))
0