結果

問題 No.287 場合の数
ユーザー rlangevinrlangevin
提出日時 2023-09-21 12:17:06
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 45 ms / 5,000 ms
コード長 257 bytes
コンパイル時間 243 ms
コンパイル使用メモリ 82,328 KB
実行使用メモリ 61,992 KB
最終ジャッジ日時 2024-07-07 06:08:13
合計ジャッジ時間 2,109 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
60,624 KB
testcase_01 AC 40 ms
61,812 KB
testcase_02 AC 40 ms
60,496 KB
testcase_03 AC 41 ms
60,184 KB
testcase_04 AC 42 ms
60,508 KB
testcase_05 AC 42 ms
60,492 KB
testcase_06 AC 41 ms
59,960 KB
testcase_07 AC 40 ms
60,828 KB
testcase_08 AC 39 ms
60,856 KB
testcase_09 AC 40 ms
60,372 KB
testcase_10 AC 45 ms
60,308 KB
testcase_11 AC 43 ms
60,528 KB
testcase_12 AC 41 ms
59,920 KB
testcase_13 AC 40 ms
59,908 KB
testcase_14 AC 40 ms
60,240 KB
testcase_15 AC 39 ms
60,992 KB
testcase_16 AC 41 ms
60,508 KB
testcase_17 AC 40 ms
61,312 KB
testcase_18 AC 41 ms
60,684 KB
testcase_19 AC 40 ms
61,876 KB
testcase_20 AC 39 ms
61,604 KB
testcase_21 AC 41 ms
61,992 KB
testcase_22 AC 41 ms
61,128 KB
testcase_23 AC 41 ms
60,448 KB
testcase_24 AC 41 ms
61,064 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
M = 1000
A = [int(i <= N) for i in range(M)]

def pow2(L, M):
    new = [0] * M
    for i in range(M):
        for j in range(i + 1):
            new[i] += L[j] * L[i - j]
    return new

for _ in range(3):
    A = pow2(A, M)

print(A[6*N])
0