結果

問題 No.790 ちきんの括弧並べ
ユーザー phtmscgphtmscg
提出日時 2019-04-04 00:57:13
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 328 bytes
コンパイル時間 161 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 10,752 KB
最終ジャッジ日時 2024-06-06 04:55:09
合計ジャッジ時間 4,209 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

N = int(input())
c = 0

def bracket(s):
    sl = s.count("(")
    sr = s.count(")")
    if sl == sr and sl != N and sr != N:
        bracket(s+"(")
    elif sl != N and sr != N:
        bracket(s+"(")
        bracket(s+")")
    elif sr != N:
        bracket(s+")")
    else:
        global c
        c += 1
bracket("(")
print(c)
0