結果

問題 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
コンパイル時間 697 ms
コンパイル使用メモリ 12,288 KB
実行使用メモリ 10,624 KB
最終ジャッジ日時 2024-12-23 16:29:50
合計ジャッジ時間 5,378 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
10,624 KB
testcase_01 AC 31 ms
10,624 KB
testcase_02 AC 32 ms
10,496 KB
testcase_03 AC 31 ms
10,496 KB
testcase_04 AC 31 ms
10,496 KB
testcase_05 AC 36 ms
10,496 KB
testcase_06 AC 45 ms
10,496 KB
testcase_07 AC 82 ms
10,496 KB
testcase_08 AC 723 ms
10,496 KB
testcase_09 TLE -
testcase_10 AC 31 ms
10,496 KB
testcase_11 AC 31 ms
10,496 KB
testcase_12 AC 209 ms
10,624 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