結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,685 ms
57,628 KB
testcase_01 AC 992 ms
57,884 KB
testcase_02 AC 991 ms
58,016 KB
testcase_03 AC 998 ms
57,628 KB
testcase_04 AC 995 ms
57,760 KB
testcase_05 AC 1,002 ms
57,500 KB
testcase_06 AC 1,012 ms
57,380 KB
testcase_07 AC 1,002 ms
57,632 KB
testcase_08 AC 1,000 ms
57,632 KB
testcase_09 AC 999 ms
57,504 KB
testcase_10 AC 994 ms
57,884 KB
testcase_11 AC 992 ms
57,916 KB
testcase_12 AC 995 ms
57,504 KB
testcase_13 AC 1,014 ms
57,628 KB
testcase_14 AC 1,010 ms
58,264 KB
testcase_15 AC 994 ms
57,884 KB
testcase_16 AC 1,002 ms
57,884 KB
testcase_17 AC 998 ms
57,764 KB
testcase_18 AC 989 ms
57,636 KB
testcase_19 AC 999 ms
57,756 KB
testcase_20 WA -
testcase_21 AC 999 ms
57,504 KB
testcase_22 AC 1,001 ms
57,632 KB
testcase_23 AC 998 ms
57,628 KB
testcase_24 AC 1,013 ms
58,144 KB
testcase_25 AC 1,025 ms
57,504 KB
testcase_26 AC 1,017 ms
57,756 KB
testcase_27 AC 1,006 ms
58,140 KB
testcase_28 AC 1,013 ms
57,500 KB
testcase_29 AC 1,009 ms
57,808 KB
testcase_30 AC 995 ms
57,884 KB
testcase_31 AC 984 ms
57,628 KB
testcase_32 AC 998 ms
57,496 KB
testcase_33 AC 990 ms
57,632 KB
testcase_34 AC 1,000 ms
58,140 KB
testcase_35 AC 1,014 ms
57,372 KB
testcase_36 AC 1,007 ms
57,368 KB
testcase_37 AC 1,000 ms
57,376 KB
testcase_38 AC 995 ms
57,472 KB
testcase_39 AC 988 ms
57,376 KB
testcase_40 AC 993 ms
115,784 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from scipy.special import zeta, polygamma, factorial

x = int(input())

ans = 0

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

print (int(ans))
0