結果

問題 No.287 場合の数
ユーザー titiatitia
提出日時 2022-10-08 02:52:09
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 189 ms / 5,000 ms
コード長 218 bytes
コンパイル時間 95 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 10,752 KB
最終ジャッジ日時 2024-06-13 01:54:26
合計ジャッジ時間 3,899 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 132 ms
10,752 KB
testcase_01 AC 26 ms
10,752 KB
testcase_02 AC 27 ms
10,752 KB
testcase_03 AC 184 ms
10,624 KB
testcase_04 AC 189 ms
10,624 KB
testcase_05 AC 132 ms
10,752 KB
testcase_06 AC 33 ms
10,752 KB
testcase_07 AC 71 ms
10,624 KB
testcase_08 AC 97 ms
10,752 KB
testcase_09 AC 142 ms
10,624 KB
testcase_10 AC 182 ms
10,752 KB
testcase_11 AC 62 ms
10,624 KB
testcase_12 AC 159 ms
10,624 KB
testcase_13 AC 39 ms
10,624 KB
testcase_14 AC 77 ms
10,624 KB
testcase_15 AC 135 ms
10,624 KB
testcase_16 AC 82 ms
10,752 KB
testcase_17 AC 151 ms
10,752 KB
testcase_18 AC 68 ms
10,752 KB
testcase_19 AC 147 ms
10,624 KB
testcase_20 AC 94 ms
10,752 KB
testcase_21 AC 135 ms
10,752 KB
testcase_22 AC 132 ms
10,752 KB
testcase_23 AC 108 ms
10,624 KB
testcase_24 AC 80 ms
10,624 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n=int(input())

DP=[0]*(n*6+1)
DP[0]=1
for i in range(8):
    NDP=[0]*(n*6+1)
    for j in range(n*6+1):
        for k in range(n+1):
            if j+k<n*6+1:
                NDP[j+k]+=DP[j]
    DP=NDP

print(DP[6*n])
0