結果

問題 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,806 ms / 2,000 ms
コード長 76 bytes
コンパイル時間 79 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 112,076 KB
最終ジャッジ日時 2024-04-10 13:39:59
合計ジャッジ時間 36,351 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
外部呼び出し有り
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,806 ms
56,352 KB
testcase_01 AC 832 ms
56,356 KB
testcase_02 AC 852 ms
55,964 KB
testcase_03 AC 853 ms
56,480 KB
testcase_04 AC 867 ms
56,228 KB
testcase_05 AC 839 ms
56,096 KB
testcase_06 AC 842 ms
56,228 KB
testcase_07 AC 828 ms
56,612 KB
testcase_08 AC 823 ms
56,356 KB
testcase_09 AC 839 ms
56,096 KB
testcase_10 AC 858 ms
55,968 KB
testcase_11 AC 856 ms
55,972 KB
testcase_12 AC 838 ms
56,220 KB
testcase_13 AC 840 ms
55,844 KB
testcase_14 AC 846 ms
55,972 KB
testcase_15 AC 846 ms
56,616 KB
testcase_16 AC 857 ms
56,612 KB
testcase_17 AC 848 ms
56,228 KB
testcase_18 AC 844 ms
55,968 KB
testcase_19 AC 834 ms
56,352 KB
testcase_20 AC 841 ms
55,968 KB
testcase_21 AC 837 ms
55,972 KB
testcase_22 AC 842 ms
56,608 KB
testcase_23 AC 844 ms
55,848 KB
testcase_24 AC 839 ms
56,232 KB
testcase_25 AC 833 ms
56,076 KB
testcase_26 AC 825 ms
56,232 KB
testcase_27 AC 854 ms
56,356 KB
testcase_28 AC 872 ms
56,356 KB
testcase_29 AC 843 ms
56,228 KB
testcase_30 AC 848 ms
56,356 KB
testcase_31 AC 836 ms
56,228 KB
testcase_32 AC 835 ms
56,100 KB
testcase_33 AC 838 ms
56,348 KB
testcase_34 AC 861 ms
55,972 KB
testcase_35 AC 862 ms
55,980 KB
testcase_36 AC 839 ms
112,076 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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