結果
問題 | No.597 concat |
ユーザー |
|
提出日時 | 2017-11-24 22:49:17 |
言語 | C++11(廃止可能性あり) (gcc 13.3.0) |
結果 |
AC
|
実行時間 | 2 ms / 2,000 ms |
コード長 | 1,166 bytes |
コンパイル時間 | 1,281 ms |
コンパイル使用メモリ | 92,972 KB |
実行使用メモリ | 6,820 KB |
最終ジャッジ日時 | 2024-11-27 07:42:34 |
合計ジャッジ時間 | 1,184 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 11 |
ソースコード
#include<cstdio> #include<cstdlib> #include<cstring> #include<cmath> #include<ctime> #include<cctype> #include<climits> #include<iostream> #include<string> #include<vector> #include<map> #include<list> #include<queue> #include<deque> #include<algorithm> #include<numeric> #include<utility> #include<complex> #include<memory> #include<functional> #include<set> using namespace std; #define ALL(g) (g).begin(),(g).end() #define REP(i, x, n) for(int i = x; i < n; i++) #define rep(i,n) REP(i,0,n) #define P(p) cout<<(p)<<endl; #define p(p) cout<<(p)<<" "; #define pb push_back #define mp make_pair #define INF 1<<25 typedef vector<int> vi; typedef vector<vi> vvi; typedef vector<string> vs; typedef pair<int, int> pi; typedef long long ll; //int dy[8]={1,1,1,0,0,-1,-1,-1}; //int dx[8]={-1,0,1,-1,1,-1,0,1}; int dx[4]={0,1,0,-1}; int dy[4]={1,0,-1,0}; struct S{ int a,b,c; }; bool asc(const S& left,const S& right){ return left.c > right.c; } int N,M,l,r; vi a,b,c,d; vector<string>S; void input(){ cin>>N; S.resize(N+1); rep(i,N){ cin>>S[i]; cout<<S[i]; } cout<<endl; } int main(){ cin.tie(0); ios::sync_with_stdio(false); input(); return 0; }