結果

問題 No.1273 はじめのζ関数
ユーザー 👑 SPD_9X2SPD_9X2
提出日時 2020-10-30 21:51:57
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 155 bytes
コンパイル時間 359 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 58,268 KB
最終ジャッジ日時 2024-07-22 00:17:30
合計ジャッジ時間 43,253 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 992 ms
58,016 KB
testcase_01 AC 991 ms
57,628 KB
testcase_02 AC 995 ms
57,628 KB
testcase_03 AC 985 ms
57,632 KB
testcase_04 AC 986 ms
57,768 KB
testcase_05 AC 993 ms
58,016 KB
testcase_06 AC 987 ms
57,636 KB
testcase_07 AC 982 ms
57,896 KB
testcase_08 AC 985 ms
58,012 KB
testcase_09 AC 983 ms
57,728 KB
testcase_10 AC 982 ms
57,628 KB
testcase_11 AC 975 ms
57,888 KB
testcase_12 AC 974 ms
58,012 KB
testcase_13 AC 975 ms
57,888 KB
testcase_14 AC 987 ms
57,884 KB
testcase_15 AC 993 ms
57,760 KB
testcase_16 AC 994 ms
58,016 KB
testcase_17 AC 987 ms
58,016 KB
testcase_18 AC 983 ms
57,884 KB
testcase_19 AC 970 ms
57,628 KB
testcase_20 WA -
testcase_21 AC 967 ms
57,764 KB
testcase_22 AC 970 ms
58,008 KB
testcase_23 AC 984 ms
57,756 KB
testcase_24 AC 979 ms
57,508 KB
testcase_25 AC 984 ms
57,376 KB
testcase_26 AC 995 ms
57,756 KB
testcase_27 AC 990 ms
57,764 KB
testcase_28 AC 996 ms
57,756 KB
testcase_29 AC 980 ms
57,500 KB
testcase_30 AC 986 ms
58,136 KB
testcase_31 AC 992 ms
57,500 KB
testcase_32 AC 994 ms
57,892 KB
testcase_33 AC 998 ms
57,508 KB
testcase_34 AC 995 ms
58,268 KB
testcase_35 AC 1,003 ms
57,672 KB
testcase_36 AC 995 ms
58,268 KB
testcase_37 AC 1,001 ms
57,968 KB
testcase_38 AC 1,002 ms
57,760 KB
testcase_39 AC 983 ms
57,508 KB
testcase_40 AC 995 ms
58,016 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from scipy.special import zeta, polygamma, factorial

x = int(input())

ans = 0

for i in range(x,2000):
    ans += (zeta(i)-1) * (10**6)

print (int(ans))
0