結果

問題 No.1235 ζ関数
ユーザー 👑 rin204rin204
提出日時 2024-11-16 21:42:51
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 956 ms / 2,000 ms
コード長 67 bytes
コンパイル時間 236 ms
コンパイル使用メモリ 12,288 KB
実行使用メモリ 58,116 KB
最終ジャッジ日時 2024-11-16 21:43:16
合計ジャッジ時間 21,091 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
外部呼び出し有り
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 884 ms
58,116 KB
testcase_01 AC 930 ms
57,864 KB
testcase_02 AC 869 ms
57,728 KB
testcase_03 AC 925 ms
57,736 KB
testcase_04 AC 956 ms
57,468 KB
testcase_05 AC 906 ms
57,988 KB
testcase_06 AC 897 ms
57,468 KB
testcase_07 AC 878 ms
57,864 KB
testcase_08 AC 893 ms
57,468 KB
testcase_09 AC 888 ms
57,856 KB
testcase_10 AC 887 ms
57,856 KB
testcase_11 AC 848 ms
57,472 KB
testcase_12 AC 933 ms
57,864 KB
testcase_13 AC 898 ms
57,476 KB
testcase_14 AC 874 ms
57,476 KB
testcase_15 AC 903 ms
57,484 KB
testcase_16 AC 888 ms
57,732 KB
testcase_17 AC 949 ms
57,728 KB
testcase_18 AC 893 ms
58,116 KB
testcase_19 AC 874 ms
57,608 KB
testcase_20 AC 935 ms
58,112 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import scipy.special

n = int(input())
print(scipy.special.zeta(n))
0