結果

問題 No.2143 Only One Bracket
ユーザー ぷらぷら
提出日時 2022-12-02 21:30:35
言語 C++17(gcc12)
(gcc 12.3.0 + boost 1.87.0)
結果
AC  
実行時間 2 ms / 2,000 ms
コード長 303 bytes
コンパイル時間 2,043 ms
コンパイル使用メモリ 199,532 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-10-09 22:34:14
合計ジャッジ時間 2,623 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 1
other AC * 7
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

int main() {
    int N;
    cin >> N;
    int cnt = 0;
    for(int i = 0; i < N; i++) {
        string ans = string(i,')');
        if(i+1 != N) {
            ans += string(i+1,'(');
        }
        cnt += ans.size();
        cout << ans << endl;
    }
}
0