結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 978 ms
57,728 KB
testcase_01 AC 963 ms
57,476 KB
testcase_02 AC 971 ms
57,724 KB
testcase_03 AC 971 ms
58,240 KB
testcase_04 AC 978 ms
57,604 KB
testcase_05 AC 978 ms
57,856 KB
testcase_06 AC 973 ms
57,352 KB
testcase_07 AC 973 ms
57,724 KB
testcase_08 AC 973 ms
57,476 KB
testcase_09 AC 967 ms
57,728 KB
testcase_10 AC 974 ms
57,852 KB
testcase_11 AC 984 ms
57,516 KB
testcase_12 AC 1,036 ms
57,468 KB
testcase_13 AC 1,042 ms
57,856 KB
testcase_14 AC 973 ms
57,604 KB
testcase_15 AC 971 ms
57,820 KB
testcase_16 AC 984 ms
57,484 KB
testcase_17 AC 972 ms
57,736 KB
testcase_18 AC 973 ms
57,860 KB
testcase_19 AC 972 ms
57,484 KB
testcase_20 AC 977 ms
57,476 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import scipy.special

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