結果

問題 No.287 場合の数
ユーザー tjaketjake
提出日時 2015-12-03 23:09:05
言語 Python2
(2.7.18)
結果
AC  
実行時間 86 ms / 5,000 ms
コード長 248 bytes
コンパイル時間 151 ms
コンパイル使用メモリ 6,784 KB
実行使用メモリ 6,400 KB
最終ジャッジ日時 2024-11-08 00:07:56
合計ジャッジ時間 2,288 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 70 ms
6,272 KB
testcase_01 AC 11 ms
6,272 KB
testcase_02 AC 12 ms
6,272 KB
testcase_03 AC 86 ms
6,272 KB
testcase_04 AC 84 ms
6,272 KB
testcase_05 AC 65 ms
6,272 KB
testcase_06 AC 14 ms
6,400 KB
testcase_07 AC 35 ms
6,400 KB
testcase_08 AC 52 ms
6,400 KB
testcase_09 AC 65 ms
6,400 KB
testcase_10 AC 83 ms
6,272 KB
testcase_11 AC 28 ms
6,272 KB
testcase_12 AC 76 ms
6,400 KB
testcase_13 AC 20 ms
6,272 KB
testcase_14 AC 37 ms
6,272 KB
testcase_15 AC 62 ms
6,400 KB
testcase_16 AC 39 ms
6,400 KB
testcase_17 AC 73 ms
6,272 KB
testcase_18 AC 33 ms
6,400 KB
testcase_19 AC 68 ms
6,272 KB
testcase_20 AC 46 ms
6,272 KB
testcase_21 AC 66 ms
6,272 KB
testcase_22 AC 61 ms
6,272 KB
testcase_23 AC 55 ms
6,144 KB
testcase_24 AC 40 ms
6,272 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = input()
dp = [[-1]*(6*n+1) for i in xrange(8)]
def dfs(c, rest):
    if c<0: return rest==0
    v = dp[c][rest]
    if v != -1: return v
    r = dp[c][rest] = sum(dfs(c-1, rest-i) for i in xrange(min(n, rest)+1))
    return r
print dfs(7, 6*n)
0