結果

問題 No.1408 Nice Dice Game
ユーザー pluto77pluto77
提出日時 2021-03-14 14:12:15
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 951 ms / 2,000 ms
コード長 83 bytes
コンパイル時間 817 ms
コンパイル使用メモリ 12,288 KB
実行使用メモリ 56,512 KB
最終ジャッジ日時 2024-04-23 21:37:33
合計ジャッジ時間 40,065 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
外部呼び出し有り
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 951 ms
56,500 KB
testcase_01 AC 896 ms
55,856 KB
testcase_02 AC 871 ms
56,244 KB
testcase_03 AC 879 ms
56,256 KB
testcase_04 AC 857 ms
56,252 KB
testcase_05 AC 867 ms
56,116 KB
testcase_06 AC 877 ms
55,908 KB
testcase_07 AC 856 ms
56,252 KB
testcase_08 AC 866 ms
55,868 KB
testcase_09 AC 855 ms
55,992 KB
testcase_10 AC 879 ms
55,988 KB
testcase_11 AC 860 ms
56,380 KB
testcase_12 AC 856 ms
56,252 KB
testcase_13 AC 867 ms
55,868 KB
testcase_14 AC 877 ms
55,992 KB
testcase_15 AC 869 ms
56,252 KB
testcase_16 AC 873 ms
56,504 KB
testcase_17 AC 863 ms
56,512 KB
testcase_18 AC 883 ms
55,996 KB
testcase_19 AC 885 ms
55,860 KB
testcase_20 AC 874 ms
55,996 KB
testcase_21 AC 875 ms
56,120 KB
testcase_22 AC 880 ms
55,996 KB
testcase_23 AC 880 ms
56,248 KB
testcase_24 AC 866 ms
55,992 KB
testcase_25 AC 870 ms
56,252 KB
testcase_26 AC 875 ms
56,380 KB
testcase_27 AC 880 ms
56,124 KB
testcase_28 AC 868 ms
55,992 KB
testcase_29 AC 870 ms
55,992 KB
testcase_30 AC 904 ms
56,380 KB
testcase_31 AC 879 ms
55,868 KB
testcase_32 AC 859 ms
55,996 KB
testcase_33 AC 851 ms
56,120 KB
testcase_34 AC 857 ms
55,992 KB
testcase_35 AC 869 ms
56,256 KB
testcase_36 AC 861 ms
55,996 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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