結果

問題 No.790 ちきんの括弧並べ
ユーザー 大橋佐和
提出日時 2022-05-06 19:26:29
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 377 bytes
コンパイル時間 212 ms
コンパイル使用メモリ 82,220 KB
実行使用メモリ 83,356 KB
最終ジャッジ日時 2024-07-05 20:25:33
合計ジャッジ時間 5,695 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample -- * 3
other AC * 9 TLE * 1
権限があれば一括ダウンロードができます

ソースコード

diff #

import itertools


n = int(input())

answer = 0
for pops in itertools.combinations(range(2 * n), n):
    pops_set = set(pops)
    s = 0
    criteria = True
    for i in range(2 * n):
        if i in pops_set:
            s += 1
        else:
            s -= 1
        if s < 0:
            criteria = False
            break
    if criteria:
        answer += 1
print(answer)
0