結果

問題 No.287 場合の数
ユーザー takakintakakin
提出日時 2020-06-21 20:48:52
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 191 ms / 5,000 ms
コード長 251 bytes
コンパイル時間 83 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 10,752 KB
最終ジャッジ日時 2024-07-03 18:23:24
合計ジャッジ時間 3,756 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 141 ms
10,496 KB
testcase_01 AC 26 ms
10,624 KB
testcase_02 AC 27 ms
10,752 KB
testcase_03 AC 191 ms
10,752 KB
testcase_04 AC 180 ms
10,752 KB
testcase_05 AC 136 ms
10,752 KB
testcase_06 AC 32 ms
10,752 KB
testcase_07 AC 71 ms
10,752 KB
testcase_08 AC 97 ms
10,752 KB
testcase_09 AC 136 ms
10,624 KB
testcase_10 AC 182 ms
10,624 KB
testcase_11 AC 64 ms
10,752 KB
testcase_12 AC 160 ms
10,624 KB
testcase_13 AC 40 ms
10,752 KB
testcase_14 AC 82 ms
10,496 KB
testcase_15 AC 132 ms
10,752 KB
testcase_16 AC 80 ms
10,752 KB
testcase_17 AC 167 ms
10,496 KB
testcase_18 AC 70 ms
10,624 KB
testcase_19 AC 143 ms
10,624 KB
testcase_20 AC 93 ms
10,752 KB
testcase_21 AC 135 ms
10,752 KB
testcase_22 AC 137 ms
10,752 KB
testcase_23 AC 115 ms
10,752 KB
testcase_24 AC 81 ms
10,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input=lambda: sys.stdin.readline().rstrip()
n=int(input())
DP=[[0]*(6*n+1) for _ in range(9)]
DP[0][0]=1
for i in range(8):
  for j in range(6*n+1):
    for k in range(n+1):
      if j+k<=6*n:
        DP[i+1][j+k]+=DP[i][j]
print(DP[8][-1])
0