結果

問題 No.790 ちきんの括弧並べ
ユーザー htkbhtkb
提出日時 2019-02-20 22:07:59
言語 Python3
(3.11.6 + numpy 1.26.0 + scipy 1.11.3)
結果
AC  
実行時間 15 ms / 2,000 ms
コード長 244 bytes
コンパイル時間 761 ms
コンパイル使用メモリ 10,644 KB
実行使用メモリ 7,972 KB
最終ジャッジ日時 2023-08-07 14:43:07
合計ジャッジ時間 1,740 ms
ジャッジサーバーID
(参考情報)
judge12 / judge15
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 14 ms
7,816 KB
testcase_01 AC 14 ms
7,972 KB
testcase_02 AC 14 ms
7,920 KB
testcase_03 AC 14 ms
7,816 KB
testcase_04 AC 14 ms
7,848 KB
testcase_05 AC 14 ms
7,804 KB
testcase_06 AC 15 ms
7,836 KB
testcase_07 AC 15 ms
7,776 KB
testcase_08 AC 14 ms
7,820 KB
testcase_09 AC 14 ms
7,836 KB
testcase_10 AC 14 ms
7,848 KB
testcase_11 AC 14 ms
7,852 KB
testcase_12 AC 15 ms
7,856 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())

dp = [[0]*14 for _ in [0]*14]
dp[0][0] = 1
for i in range(1, N+1):
    for j in range(N+1):
        if j - i >= 0:
            dp[i][j] = dp[i][j-1] + dp[i-1][j]
        else:
            dp[i][j] = dp[i-1][j]

print(dp[N][N])
0