結果

問題 No.790 ちきんの括弧並べ
ユーザー tails1434tails1434
提出日時 2020-01-09 21:58:59
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 541 bytes
コンパイル時間 266 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 151,936 KB
最終ジャッジ日時 2024-11-23 04:59:54
合計ジャッジ時間 10,033 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
57,088 KB
testcase_01 AC 41 ms
127,616 KB
testcase_02 AC 42 ms
58,496 KB
testcase_03 AC 57 ms
64,768 KB
testcase_04 AC 62 ms
73,088 KB
testcase_05 AC 84 ms
76,080 KB
testcase_06 AC 167 ms
75,904 KB
testcase_07 AC 519 ms
75,904 KB
testcase_08 TLE -
testcase_09 TLE -
testcase_10 AC 40 ms
51,840 KB
testcase_11 AC 40 ms
51,840 KB
testcase_12 AC 1,999 ms
151,936 KB
権限があれば一括ダウンロードができます

ソースコード

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