結果

問題 No.893 お客様を誘導せよ
ユーザー sitihisitihi
提出日時 2019-09-28 00:35:30
言語 C
(gcc 12.3.0)
結果
WA  
実行時間 -
コード長 364 bytes
コンパイル時間 374 ms
コンパイル使用メモリ 28,804 KB
実行使用メモリ 4,348 KB
最終ジャッジ日時 2023-10-25 08:29:35
合計ジャッジ時間 1,205 ms
ジャッジサーバーID
(参考情報)
judge15 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

#include <stdio.h>

int main(){
  int n,i,j,p;
  unsigned long long int M[1000][100];

 


  scanf("%d", &n);
  for (i=0; i < n; i++){
    scanf("%d", &p);
    for (j=0; j<p; j++){
        scanf("%d", &M[i][j]);
    }
  }
  for (j=0; j<100; j++){
    for (i=0; i<n; i++){
      if (M[i][j] != 0) {printf("%d ", M[i][j]);
          
      }
    }
  }
  return 0;

}
0