結果

問題 No.1408 Nice Dice Game
ユーザー pluto77pluto77
提出日時 2021-03-14 14:12:13
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,338 ms / 2,000 ms
コード長 83 bytes
コンパイル時間 390 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 109,432 KB
最終ジャッジ日時 2024-11-06 03:54:44
合計ジャッジ時間 41,353 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
外部呼び出し有り
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,338 ms
56,504 KB
testcase_01 AC 983 ms
55,988 KB
testcase_02 AC 1,028 ms
56,124 KB
testcase_03 AC 980 ms
55,868 KB
testcase_04 AC 973 ms
55,996 KB
testcase_05 AC 962 ms
56,248 KB
testcase_06 AC 992 ms
55,872 KB
testcase_07 AC 1,007 ms
55,996 KB
testcase_08 AC 977 ms
56,244 KB
testcase_09 AC 979 ms
56,000 KB
testcase_10 AC 971 ms
55,992 KB
testcase_11 AC 972 ms
56,264 KB
testcase_12 AC 978 ms
56,252 KB
testcase_13 AC 999 ms
56,128 KB
testcase_14 AC 994 ms
56,252 KB
testcase_15 AC 1,005 ms
56,252 KB
testcase_16 AC 1,028 ms
56,124 KB
testcase_17 AC 1,060 ms
56,260 KB
testcase_18 AC 1,027 ms
55,868 KB
testcase_19 AC 998 ms
56,504 KB
testcase_20 AC 1,006 ms
55,992 KB
testcase_21 AC 993 ms
55,812 KB
testcase_22 AC 1,015 ms
56,644 KB
testcase_23 AC 996 ms
56,376 KB
testcase_24 AC 997 ms
56,508 KB
testcase_25 AC 985 ms
55,992 KB
testcase_26 AC 988 ms
56,120 KB
testcase_27 AC 981 ms
56,124 KB
testcase_28 AC 982 ms
56,508 KB
testcase_29 AC 995 ms
56,636 KB
testcase_30 AC 980 ms
56,120 KB
testcase_31 AC 986 ms
56,380 KB
testcase_32 AC 993 ms
56,256 KB
testcase_33 AC 993 ms
56,256 KB
testcase_34 AC 987 ms
55,868 KB
testcase_35 AC 981 ms
56,508 KB
testcase_36 AC 973 ms
109,432 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#yuki1408
from scipy.special import zeta
n=int(input())
res=zeta(n + 2)
print(res)
0