結果

問題 No.2143 Only One Bracket
ユーザー H20H20
提出日時 2022-12-02 22:27:25
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 725 bytes
コンパイル時間 183 ms
コンパイル使用メモリ 82,000 KB
実行使用メモリ 53,796 KB
最終ジャッジ日時 2024-10-09 23:57:11
合計ジャッジ時間 1,318 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,180 KB
testcase_01 AC 39 ms
52,824 KB
testcase_02 AC 39 ms
52,176 KB
testcase_03 AC 38 ms
53,796 KB
testcase_04 AC 42 ms
52,712 KB
testcase_05 WA -
testcase_06 AC 39 ms
52,068 KB
testcase_07 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
if N==2:
    print('((')
    print('))')
if N==3:
    print('((')
    print('))(')
    print(')')
if N==4:
    print('(((')
    print(')))((')
    print('))(')
    print(')')
if N==5:
    print('(')
    print(')(((((')
    print(')))))((')
    print('))(')
    print(')')
if N==6:
    print('(((((')
    print(')))))((((')
    print('))))(((')
    print(')))((')
    print('))(')
    print(')')
if N==7:
    print('((((((')
    print('))))))(((((')
    print(')))))((((')
    print('))))(((')
    print(')))((')
    print('))(')
    print('(')
if N==8:
    print('(')
    print(')((((((')
    print('))))))(((((')
    print(')))))((((')
    print('))))(((')
    print(')))((')
    print('))(')
    print(')')
0