結果

問題 No.1408 Nice Dice Game
ユーザー KudeKude
提出日時 2021-02-26 22:58:32
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,975 ms / 2,000 ms
コード長 76 bytes
コンパイル時間 90 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 109,224 KB
最終ジャッジ日時 2024-10-02 15:44:25
合計ジャッジ時間 40,441 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
外部呼び出し有り
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,975 ms
56,100 KB
testcase_01 AC 955 ms
55,720 KB
testcase_02 AC 935 ms
56,104 KB
testcase_03 AC 942 ms
56,228 KB
testcase_04 AC 953 ms
55,720 KB
testcase_05 AC 954 ms
55,844 KB
testcase_06 AC 940 ms
55,968 KB
testcase_07 AC 934 ms
56,352 KB
testcase_08 AC 939 ms
56,116 KB
testcase_09 AC 941 ms
56,224 KB
testcase_10 AC 952 ms
55,976 KB
testcase_11 AC 930 ms
56,108 KB
testcase_12 AC 929 ms
56,228 KB
testcase_13 AC 936 ms
56,224 KB
testcase_14 AC 948 ms
56,352 KB
testcase_15 AC 940 ms
56,356 KB
testcase_16 AC 937 ms
56,224 KB
testcase_17 AC 938 ms
55,968 KB
testcase_18 AC 951 ms
56,100 KB
testcase_19 AC 1,066 ms
56,104 KB
testcase_20 AC 1,014 ms
55,844 KB
testcase_21 AC 944 ms
56,096 KB
testcase_22 AC 946 ms
56,356 KB
testcase_23 AC 928 ms
56,228 KB
testcase_24 AC 938 ms
56,100 KB
testcase_25 AC 931 ms
56,364 KB
testcase_26 AC 955 ms
55,840 KB
testcase_27 AC 942 ms
55,844 KB
testcase_28 AC 950 ms
56,224 KB
testcase_29 AC 941 ms
55,972 KB
testcase_30 AC 947 ms
56,108 KB
testcase_31 AC 941 ms
56,360 KB
testcase_32 AC 937 ms
56,484 KB
testcase_33 AC 932 ms
56,100 KB
testcase_34 AC 939 ms
55,848 KB
testcase_35 AC 955 ms
56,220 KB
testcase_36 AC 936 ms
109,224 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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