結果

問題 No.1273 はじめのζ関数
ユーザー NatsubiSoganNatsubiSogan
提出日時 2020-10-30 21:45:29
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 195 bytes
コンパイル時間 444 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 58,672 KB
最終ジャッジ日時 2024-07-21 23:58:37
合計ジャッジ時間 47,983 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,263 ms
58,412 KB
testcase_01 AC 1,045 ms
58,176 KB
testcase_02 AC 1,035 ms
58,032 KB
testcase_03 AC 1,029 ms
58,664 KB
testcase_04 AC 1,028 ms
58,028 KB
testcase_05 AC 1,028 ms
57,772 KB
testcase_06 AC 1,028 ms
58,664 KB
testcase_07 AC 1,031 ms
58,280 KB
testcase_08 AC 1,038 ms
58,288 KB
testcase_09 AC 1,036 ms
58,152 KB
testcase_10 AC 1,056 ms
57,896 KB
testcase_11 AC 1,052 ms
57,900 KB
testcase_12 AC 1,044 ms
58,280 KB
testcase_13 AC 1,046 ms
57,900 KB
testcase_14 AC 1,040 ms
58,404 KB
testcase_15 AC 1,042 ms
58,280 KB
testcase_16 AC 1,063 ms
58,284 KB
testcase_17 AC 1,052 ms
57,892 KB
testcase_18 AC 1,046 ms
57,896 KB
testcase_19 AC 1,044 ms
58,280 KB
testcase_20 WA -
testcase_21 AC 1,063 ms
58,020 KB
testcase_22 AC 1,061 ms
58,028 KB
testcase_23 AC 1,050 ms
58,156 KB
testcase_24 AC 1,060 ms
57,892 KB
testcase_25 AC 1,054 ms
57,896 KB
testcase_26 AC 1,063 ms
57,892 KB
testcase_27 AC 1,071 ms
58,536 KB
testcase_28 AC 1,059 ms
58,668 KB
testcase_29 AC 1,063 ms
58,156 KB
testcase_30 AC 1,046 ms
58,408 KB
testcase_31 AC 1,064 ms
58,152 KB
testcase_32 AC 1,054 ms
58,408 KB
testcase_33 AC 1,059 ms
57,900 KB
testcase_34 AC 1,059 ms
58,028 KB
testcase_35 AC 1,055 ms
58,668 KB
testcase_36 AC 1,051 ms
58,280 KB
testcase_37 AC 1,041 ms
58,284 KB
testcase_38 AC 1,053 ms
58,280 KB
testcase_39 AC 1,057 ms
58,284 KB
testcase_40 AC 1,040 ms
58,668 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import scipy.special
x = int(input())
ans = 0
l = [0]
for i in range(2, 10000):
    cur = scipy.special.zeta(i) - 1
    ans += cur
    l.append(l[-1] + cur)
print(int((ans - l[x - 2]) * 10 ** 6))
0