結果

問題 No.1235 ζ関数
ユーザー PCTprobabilityPCTprobability
提出日時 2020-09-21 13:26:23
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,021 ms / 2,000 ms
コード長 61 bytes
コンパイル時間 179 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 58,120 KB
最終ジャッジ日時 2024-05-21 20:01:12
合計ジャッジ時間 24,275 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
外部呼び出し有り
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,021 ms
57,604 KB
testcase_01 AC 890 ms
57,472 KB
testcase_02 AC 869 ms
58,120 KB
testcase_03 AC 886 ms
57,480 KB
testcase_04 AC 882 ms
57,860 KB
testcase_05 AC 887 ms
57,456 KB
testcase_06 AC 877 ms
57,732 KB
testcase_07 AC 877 ms
57,864 KB
testcase_08 AC 872 ms
57,604 KB
testcase_09 AC 895 ms
57,864 KB
testcase_10 AC 868 ms
57,732 KB
testcase_11 AC 900 ms
57,480 KB
testcase_12 AC 863 ms
57,732 KB
testcase_13 AC 872 ms
57,732 KB
testcase_14 AC 878 ms
57,860 KB
testcase_15 AC 872 ms
57,476 KB
testcase_16 AC 966 ms
57,604 KB
testcase_17 AC 879 ms
57,984 KB
testcase_18 AC 880 ms
57,988 KB
testcase_19 AC 866 ms
57,472 KB
testcase_20 AC 872 ms
57,480 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from scipy.special import zeta
N=int(input())
print(zeta(N))
0