結果

問題 No.1235 ζ関数
ユーザー 👑 rin204rin204
提出日時 2022-01-18 21:43:27
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,060 ms / 2,000 ms
コード長 67 bytes
コンパイル時間 124 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 58,120 KB
最終ジャッジ日時 2024-04-28 07:55:48
合計ジャッジ時間 24,788 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
外部呼び出し有り
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,054 ms
58,108 KB
testcase_01 AC 1,042 ms
58,120 KB
testcase_02 AC 1,043 ms
57,352 KB
testcase_03 AC 1,059 ms
57,732 KB
testcase_04 AC 1,029 ms
57,604 KB
testcase_05 AC 1,031 ms
57,348 KB
testcase_06 AC 1,020 ms
57,728 KB
testcase_07 AC 1,053 ms
57,600 KB
testcase_08 AC 1,037 ms
57,864 KB
testcase_09 AC 1,045 ms
57,600 KB
testcase_10 AC 1,013 ms
57,472 KB
testcase_11 AC 1,029 ms
57,860 KB
testcase_12 AC 1,042 ms
57,348 KB
testcase_13 AC 1,034 ms
57,348 KB
testcase_14 AC 1,037 ms
57,728 KB
testcase_15 AC 1,020 ms
58,112 KB
testcase_16 AC 1,051 ms
57,348 KB
testcase_17 AC 1,029 ms
57,844 KB
testcase_18 AC 1,051 ms
57,608 KB
testcase_19 AC 1,060 ms
57,728 KB
testcase_20 AC 1,029 ms
57,600 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import scipy.special

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