結果

問題 No.893 お客様を誘導せよ
ユーザー koarikoari
提出日時 2020-03-27 14:45:16
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 669 bytes
コンパイル時間 1,499 ms
コンパイル使用メモリ 165,952 KB
実行使用メモリ 7,600 KB
最終ジャッジ日時 2023-08-30 16:23:49
合計ジャッジ時間 3,578 ms
ジャッジサーバーID
(参考情報)
judge15 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#define rep(i,n) for(ll (i)=0;(i)<(n);(i)++)
#define repi(i,a,b) for(ll (i)=(a);(i)<(b);(i)++)
#define SIZE_OF_ARRAY(array)    (sizeof(array)/sizeof(array[0]))
typedef long long ll;
using namespace std;

int main(){
  int n;
  cin >> n;
  int a[n][n];
  rep(i,n){
    rep(j,n){
      a[i][j] = 0;
    }
  }
  int num=0;
  int k=0;
  rep(i,n){
    int m;
    cin >> m;
    if(m==0) continue;
    rep(j,m) {cin >> a[k][j]; cout << a[k][j] << endl; num++;}
    k++;
  }
  while(num>0){
    for(int i=0;i<n;i++){
      for(int j=0;j<n;j++){
	if(a[j][i]!=0){
	  printf("%d " ,a[j][i]);
	  num--;
	}
      }
    }
  }
  printf("\n");
  return 0;
  }
0