結果

問題 No.790 ちきんの括弧並べ
ユーザー tails1434tails1434
提出日時 2020-01-09 22:00:14
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 541 bytes
コンパイル時間 626 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 17,700 KB
最終ジャッジ日時 2024-11-23 05:00:06
合計ジャッジ時間 10,727 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
15,872 KB
testcase_01 AC 34 ms
17,700 KB
testcase_02 AC 31 ms
17,700 KB
testcase_03 AC 33 ms
10,496 KB
testcase_04 AC 42 ms
10,496 KB
testcase_05 AC 73 ms
10,624 KB
testcase_06 AC 190 ms
10,624 KB
testcase_07 AC 656 ms
10,496 KB
testcase_08 TLE -
testcase_09 TLE -
testcase_10 AC 31 ms
10,496 KB
testcase_11 AC 32 ms
10,496 KB
testcase_12 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

def main():
    N = int(input())
    cnt = 0
    for i in range(1<<(N * 2)):
        bin_num = bin(i)[2:]
        if bin_num.count('1') != N:
            continue 
        left = 0
        right = 0
        flag = True
        for j in range(N * 2):
            if (i >> j) & 1:
                left += 1
            else:
                right += 1

            if right > left:
                flag = False
                break
        if flag and right == left:
            cnt += 1

    print(cnt)

if __name__ == "__main__":
    main()
0