結果

問題 No.1273 はじめのζ関数
ユーザー chineristACchineristAC
提出日時 2020-10-30 21:52:02
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,050 ms / 2,000 ms
コード長 138 bytes
コンパイル時間 125 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 58,260 KB
最終ジャッジ日時 2024-07-22 00:18:33
合計ジャッジ時間 43,265 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
外部呼び出し有り
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 967 ms
57,872 KB
testcase_01 AC 964 ms
57,616 KB
testcase_02 AC 978 ms
57,880 KB
testcase_03 AC 956 ms
57,996 KB
testcase_04 AC 970 ms
57,612 KB
testcase_05 AC 975 ms
57,744 KB
testcase_06 AC 960 ms
58,000 KB
testcase_07 AC 973 ms
57,484 KB
testcase_08 AC 983 ms
57,876 KB
testcase_09 AC 986 ms
57,872 KB
testcase_10 AC 977 ms
57,868 KB
testcase_11 AC 967 ms
58,260 KB
testcase_12 AC 1,050 ms
57,492 KB
testcase_13 AC 972 ms
57,752 KB
testcase_14 AC 978 ms
57,872 KB
testcase_15 AC 977 ms
57,620 KB
testcase_16 AC 958 ms
57,876 KB
testcase_17 AC 966 ms
57,736 KB
testcase_18 AC 973 ms
57,872 KB
testcase_19 AC 973 ms
57,744 KB
testcase_20 AC 968 ms
58,004 KB
testcase_21 AC 987 ms
57,884 KB
testcase_22 AC 972 ms
57,744 KB
testcase_23 AC 987 ms
57,748 KB
testcase_24 AC 982 ms
57,616 KB
testcase_25 AC 970 ms
58,004 KB
testcase_26 AC 986 ms
57,740 KB
testcase_27 AC 985 ms
57,748 KB
testcase_28 AC 981 ms
58,244 KB
testcase_29 AC 995 ms
57,748 KB
testcase_30 AC 977 ms
57,616 KB
testcase_31 AC 995 ms
57,876 KB
testcase_32 AC 981 ms
58,004 KB
testcase_33 AC 977 ms
57,880 KB
testcase_34 AC 971 ms
57,996 KB
testcase_35 AC 963 ms
57,912 KB
testcase_36 AC 983 ms
57,740 KB
testcase_37 AC 977 ms
57,872 KB
testcase_38 AC 967 ms
57,488 KB
testcase_39 AC 978 ms
57,876 KB
testcase_40 AC 978 ms
57,876 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import numpy
from scipy.special import zeta

res = 1

x = int(input())
for i in range(2,x):
    res -= zeta(i) - 1

print(int(res*10**6))
0