結果

問題 No.287 場合の数
ユーザー WangLiqinWangLiqin
提出日時 2020-06-03 21:58:38
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 554 ms / 5,000 ms
コード長 228 bytes
コンパイル時間 89 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 43,716 KB
最終ジャッジ日時 2024-05-04 13:49:53
合計ジャッジ時間 18,072 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 524 ms
43,712 KB
testcase_01 AC 532 ms
43,716 KB
testcase_02 AC 531 ms
43,460 KB
testcase_03 AC 535 ms
43,456 KB
testcase_04 AC 533 ms
43,700 KB
testcase_05 AC 532 ms
43,576 KB
testcase_06 AC 536 ms
43,708 KB
testcase_07 AC 532 ms
43,448 KB
testcase_08 AC 554 ms
43,572 KB
testcase_09 AC 552 ms
43,320 KB
testcase_10 AC 537 ms
43,460 KB
testcase_11 AC 531 ms
43,440 KB
testcase_12 AC 541 ms
43,716 KB
testcase_13 AC 535 ms
43,708 KB
testcase_14 AC 535 ms
43,336 KB
testcase_15 AC 532 ms
43,324 KB
testcase_16 AC 526 ms
43,440 KB
testcase_17 AC 537 ms
43,584 KB
testcase_18 AC 531 ms
43,576 KB
testcase_19 AC 534 ms
43,328 KB
testcase_20 AC 536 ms
43,464 KB
testcase_21 AC 536 ms
43,432 KB
testcase_22 AC 533 ms
43,692 KB
testcase_23 AC 533 ms
43,700 KB
testcase_24 AC 528 ms
43,464 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import numpy as np

N = int(input())
M = 6 * N
dp = np.zeros(M + 1, np.int64)
for i in range(N + 1):
    dp[i] += 1

for _ in range(7):
    prev = dp.copy()
    for i in range(1, N + 1):
        dp[i:] += prev[:-i]
print(dp[M])
0