結果
| 問題 | No.2143 Only One Bracket | 
| コンテスト | |
| ユーザー |  gew1fw | 
| 提出日時 | 2025-06-12 15:54:56 | 
| 言語 | PyPy3 (7.3.15) | 
| 結果 | 
                                WA
                                 
                             | 
| 実行時間 | - | 
| コード長 | 143 bytes | 
| コンパイル時間 | 336 ms | 
| コンパイル使用メモリ | 82,816 KB | 
| 実行使用メモリ | 52,224 KB | 
| 最終ジャッジ日時 | 2025-06-12 15:55:04 | 
| 合計ジャッジ時間 | 1,727 ms | 
| ジャッジサーバーID (参考情報) | judge1 / judge5 | 
(要ログイン)
| ファイルパターン | 結果 | 
|---|---|
| sample | AC * 1 | 
| other | WA * 7 | 
ソースコード
n = int(input())
if n == 2:
    print(')')
    print('(()')
else:
    balance = -1
    print(')')
    for _ in range(n-1):
        print('(()')
            
            
            
        