結果
| 問題 | No.893 お客様を誘導せよ |
| コンテスト | |
| ユーザー |
Rubikun
|
| 提出日時 | 2019-09-27 21:26:02 |
| 言語 | C++14 (gcc 15.3.0 + boost 1.92.0 + ACL) |
| 結果 |
AC
不安定
|
| 実行時間 | 22 ms / 2,000 ms |
| + 389µs | |
| コード長 | 512 bytes |
| 記録 | |
| コンパイル時間 | 999 ms |
| コンパイル使用メモリ | 183,288 KB |
| 実行使用メモリ | 6,272 KB |
| 最終ジャッジ日時 | 2026-09-03 11:45:54 |
| 合計ジャッジ時間 | 2,456 ms |
|
ジャッジサーバーID (参考情報) |
judge3_1 / judge2_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 2 |
| other | AC * 11 |
ソースコード
#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
#define all(x) (x).begin(),(x).end()
const int mod=1000000007,MAX=100005;
const ll INF=1LL<<60;
int main(){
int N;cin>>N;
vector<vector<int>> A(N,vector<int>(100,-1));
for(int i=0;i<N;i++){
int a;cin>>a;
for(int j=0;j<a;j++){
cin>>A[i][j];
}
}
for(int j=0;j<100;j++){
for(int i=0;i<N;i++){
if(A[i][j]!=-1) cout<<A[i][j]<<" ";
}
}
cout<<endl;
}
Rubikun