結果

問題 No.790 ちきんの括弧並べ
ユーザー tobusakanatobusakana
提出日時 2023-09-07 20:38:18
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 108 ms / 2,000 ms
コード長 415 bytes
コンパイル時間 364 ms
コンパイル使用メモリ 82,316 KB
実行使用メモリ 75,576 KB
最終ジャッジ日時 2024-06-25 14:21:22
合計ジャッジ時間 1,746 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,032 KB
testcase_01 AC 37 ms
51,584 KB
testcase_02 AC 38 ms
52,096 KB
testcase_03 AC 39 ms
52,352 KB
testcase_04 AC 45 ms
59,776 KB
testcase_05 AC 48 ms
61,824 KB
testcase_06 AC 50 ms
62,336 KB
testcase_07 AC 50 ms
66,944 KB
testcase_08 AC 70 ms
75,576 KB
testcase_09 AC 108 ms
75,188 KB
testcase_10 AC 38 ms
51,584 KB
testcase_11 AC 38 ms
51,712 KB
testcase_12 AC 59 ms
75,364 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# [開き括弧の個数, 今何番目]

N = int(input())
stack = []
stack.append([1, 1])
ans = 0
M = 2 * N
while stack:
    opened, cnt = stack.pop()
    if cnt == M:
        if opened == 0:
            ans += 1
        continue
    if opened - 1 >= 0:
        stack.append([opened - 1, cnt + 1])
    if M - (cnt + 1) >= opened + 1:
        stack.append([opened + 1, cnt + 1])

print(ans)            
        
    
0