結果
| 問題 |
No.2143 Only One Bracket
|
| コンテスト | |
| ユーザー |
sotanishy
|
| 提出日時 | 2022-12-02 21:43:46 |
| 言語 | PyPy3 (7.3.15) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 121 bytes |
| コンパイル時間 | 372 ms |
| コンパイル使用メモリ | 82,560 KB |
| 実行使用メモリ | 52,352 KB |
| 最終ジャッジ日時 | 2024-10-09 22:51:47 |
| 合計ジャッジ時間 | 2,085 ms |
|
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | WA * 1 |
| other | WA * 7 |
ソースコード
import sys
input = sys.stdin.readline
N = int(input())
for i in range(N):
ans = ')' * i + '(' * (i+1)
print(ans)
sotanishy