結果

問題 No.790 ちきんの括弧並べ
ユーザー ssmkzkssmkzk
提出日時 2019-06-30 13:44:14
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 347 bytes
コンパイル時間 82 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 17,700 KB
最終ジャッジ日時 2024-07-05 23:09:45
合計ジャッジ時間 7,081 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
16,000 KB
testcase_01 AC 30 ms
10,624 KB
testcase_02 AC 31 ms
10,752 KB
testcase_03 AC 37 ms
10,752 KB
testcase_04 AC 59 ms
10,624 KB
testcase_05 AC 163 ms
10,624 KB
testcase_06 AC 592 ms
10,496 KB
testcase_07 TLE -
testcase_08 TLE -
testcase_09 -- -
testcase_10 -- -
testcase_11 -- -
testcase_12 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
ans = 0

for i in range(2 ** (2*N)):
    left = 0
    right = 0
    bit = bin(i)
    flg = 0
    for j in range(N * 2):
        if (i >> j) & 1:
            left += 1
        else:
            right += 1
        if left < right:
            flg = 1
            break
    if flg == 0 and left == right:
        ans += 1

print(ans)
0