結果

問題 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,060 ms / 2,000 ms
コード長 83 bytes
コンパイル時間 191 ms
コンパイル使用メモリ 12,288 KB
実行使用メモリ 56,252 KB
最終ジャッジ日時 2024-04-23 21:34:40
合計ジャッジ時間 40,562 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
外部呼び出し有り
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 972 ms
55,996 KB
testcase_01 AC 965 ms
55,868 KB
testcase_02 AC 954 ms
56,120 KB
testcase_03 AC 966 ms
56,124 KB
testcase_04 AC 1,000 ms
55,736 KB
testcase_05 AC 974 ms
56,248 KB
testcase_06 AC 971 ms
55,868 KB
testcase_07 AC 991 ms
55,868 KB
testcase_08 AC 968 ms
55,736 KB
testcase_09 AC 980 ms
56,248 KB
testcase_10 AC 977 ms
56,120 KB
testcase_11 AC 975 ms
55,732 KB
testcase_12 AC 964 ms
55,872 KB
testcase_13 AC 968 ms
56,000 KB
testcase_14 AC 971 ms
55,740 KB
testcase_15 AC 975 ms
55,996 KB
testcase_16 AC 965 ms
55,740 KB
testcase_17 AC 991 ms
56,248 KB
testcase_18 AC 1,011 ms
56,252 KB
testcase_19 AC 961 ms
55,872 KB
testcase_20 AC 961 ms
56,252 KB
testcase_21 AC 982 ms
55,872 KB
testcase_22 AC 978 ms
55,732 KB
testcase_23 AC 966 ms
55,736 KB
testcase_24 AC 979 ms
55,740 KB
testcase_25 AC 989 ms
55,996 KB
testcase_26 AC 964 ms
55,868 KB
testcase_27 AC 976 ms
55,872 KB
testcase_28 AC 969 ms
55,872 KB
testcase_29 AC 993 ms
56,120 KB
testcase_30 AC 973 ms
55,848 KB
testcase_31 AC 967 ms
55,868 KB
testcase_32 AC 958 ms
55,956 KB
testcase_33 AC 968 ms
55,860 KB
testcase_34 AC 972 ms
56,128 KB
testcase_35 AC 974 ms
56,000 KB
testcase_36 AC 1,060 ms
56,248 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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