結果

問題 No.287 場合の数
ユーザー tookunn_1213tookunn_1213
提出日時 2016-09-11 17:04:01
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 226 ms / 5,000 ms
コード長 199 bytes
コンパイル時間 194 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 11,008 KB
最終ジャッジ日時 2024-11-17 03:31:24
合計ジャッジ時間 4,545 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 161 ms
10,880 KB
testcase_01 AC 30 ms
10,624 KB
testcase_02 AC 32 ms
10,880 KB
testcase_03 AC 226 ms
10,752 KB
testcase_04 AC 212 ms
10,880 KB
testcase_05 AC 164 ms
10,752 KB
testcase_06 AC 37 ms
10,624 KB
testcase_07 AC 86 ms
10,752 KB
testcase_08 AC 118 ms
10,624 KB
testcase_09 AC 167 ms
10,880 KB
testcase_10 AC 214 ms
10,752 KB
testcase_11 AC 72 ms
10,880 KB
testcase_12 AC 203 ms
10,752 KB
testcase_13 AC 49 ms
10,752 KB
testcase_14 AC 96 ms
10,624 KB
testcase_15 AC 163 ms
10,880 KB
testcase_16 AC 101 ms
10,624 KB
testcase_17 AC 183 ms
11,008 KB
testcase_18 AC 84 ms
10,624 KB
testcase_19 AC 194 ms
10,752 KB
testcase_20 AC 106 ms
10,752 KB
testcase_21 AC 166 ms
10,880 KB
testcase_22 AC 162 ms
11,008 KB
testcase_23 AC 141 ms
11,008 KB
testcase_24 AC 100 ms
10,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N=int(input())
dp=[[0 for j in range(701)]for i in range(10)]
dp[0][0]=1
for i in range(9):
	for j in range(N*6+1):
		for k in range(N+1):
			if j+k<=6*N:
				dp[i+1][j+k]+=dp[i][j]
print(dp[8][6*N])
0