結果

問題 No.2143 Only One Bracket
ユーザー srjywrdnprktsrjywrdnprkt
提出日時 2024-11-13 12:02:45
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 2 ms / 2,000 ms
コード長 639 bytes
コンパイル時間 2,655 ms
コンパイル使用メモリ 199,408 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-11-13 12:02:48
合計ジャッジ時間 3,481 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 2 ms
5,248 KB
testcase_03 AC 2 ms
5,248 KB
testcase_04 AC 2 ms
5,248 KB
testcase_05 AC 2 ms
5,248 KB
testcase_06 AC 2 ms
5,248 KB
testcase_07 AC 2 ms
5,248 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
//#include <atcoder/modint>

using namespace std;
//using namespace atcoder;
using ll = long long;
//using mint = modint998244353;

int main(){
    cin.tie(nullptr);
    ios_base::sync_with_stdio(false);

    /*
       1,4,9,...
       (0,+1),(-1,+2),(-2,+3),...
       のようにしていくと(*,+x)の後には(-x,*)を付ける必要がある。
    */
    int N;
    cin >> N;
    for (int i=1; i<=N-1; i++){
        for (int j=0; j<i-1; j++) cout << ')';
        for (int j=0; j<i; j++) cout << '(';
        cout << endl;
    }
    for (int i=0; i<N-1; i++) cout << ')';
    cout << endl;

    return 0;
}
0