結果

問題 No.1273 はじめのζ関数
ユーザー NatsubiSoganNatsubiSogan
提出日時 2020-10-30 21:46:32
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,133 ms / 2,000 ms
コード長 238 bytes
コンパイル時間 396 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 58,412 KB
最終ジャッジ日時 2024-07-22 00:05:12
合計ジャッジ時間 47,121 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
外部呼び出し有り
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,052 ms
58,028 KB
testcase_01 AC 1,063 ms
57,896 KB
testcase_02 AC 1,064 ms
57,896 KB
testcase_03 AC 1,056 ms
58,284 KB
testcase_04 AC 1,053 ms
58,284 KB
testcase_05 AC 1,074 ms
58,148 KB
testcase_06 AC 1,053 ms
58,280 KB
testcase_07 AC 1,063 ms
58,288 KB
testcase_08 AC 1,075 ms
58,284 KB
testcase_09 AC 1,065 ms
57,896 KB
testcase_10 AC 1,070 ms
57,896 KB
testcase_11 AC 1,069 ms
58,152 KB
testcase_12 AC 1,094 ms
58,280 KB
testcase_13 AC 1,071 ms
58,028 KB
testcase_14 AC 1,066 ms
58,152 KB
testcase_15 AC 1,069 ms
58,280 KB
testcase_16 AC 1,077 ms
58,412 KB
testcase_17 AC 1,079 ms
58,404 KB
testcase_18 AC 1,068 ms
57,896 KB
testcase_19 AC 1,071 ms
58,028 KB
testcase_20 AC 1,069 ms
58,284 KB
testcase_21 AC 1,062 ms
58,196 KB
testcase_22 AC 1,061 ms
58,280 KB
testcase_23 AC 1,060 ms
57,912 KB
testcase_24 AC 1,061 ms
58,024 KB
testcase_25 AC 1,055 ms
57,904 KB
testcase_26 AC 1,075 ms
57,900 KB
testcase_27 AC 1,056 ms
58,412 KB
testcase_28 AC 1,060 ms
58,288 KB
testcase_29 AC 1,065 ms
58,292 KB
testcase_30 AC 1,068 ms
58,280 KB
testcase_31 AC 1,058 ms
58,280 KB
testcase_32 AC 1,069 ms
57,900 KB
testcase_33 AC 1,083 ms
57,900 KB
testcase_34 AC 1,059 ms
57,804 KB
testcase_35 AC 1,065 ms
58,284 KB
testcase_36 AC 1,066 ms
57,908 KB
testcase_37 AC 1,068 ms
58,272 KB
testcase_38 AC 1,072 ms
58,284 KB
testcase_39 AC 1,064 ms
58,284 KB
testcase_40 AC 1,133 ms
58,284 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)
if x == 2:
    print(1000000)
else:   
    print(int((ans - l[x - 2]) * 10 ** 6))
0