結果
問題 |
No.2143 Only One Bracket
|
ユーザー |
![]() |
提出日時 | 2022-12-03 15:58:56 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 2 ms / 2,000 ms |
コード長 | 926 bytes |
コンパイル時間 | 3,750 ms |
コンパイル使用メモリ | 229,668 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-10-10 18:21:54 |
合計ジャッジ時間 | 4,378 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 1 |
other | AC * 7 |
ソースコード
#include <bits/stdc++.h> #include <atcoder/all> using namespace std; using namespace atcoder; #define rep(i,n) for(int i=0;i<(n);i++) typedef long long ll; //using mint = modint; using mint = modint998244353; using P = pair<int, int>; const ll INF=1LL<<60, dx[]={0,1,0,-1},dy[]={1,0,-1,0}; template <typename T> inline bool chmin(T& a,const T&b) {if(a>b){a=b; return 1;} return 0;} template <typename T> inline bool chmax(T& a,const T&b) {if(a<b){a=b; return 1;} return 0;} string disp_r(int m) { string ret; rep(i,m) ret+=')'; return ret; } string disp_l(int m) { string ret; rep(i,m) ret+='('; return ret; } int main(){ int n; cin >> n; cout << '(' << endl; int now=1; rep(i,n-1) { if(i==n-2) { cout << disp_r(now) << endl; } else { cout << disp_r(now) << disp_l(now+1) << endl; now++; } } return 0; }