結果
問題 | No.893 お客様を誘導せよ |
ユーザー | sitihi |
提出日時 | 2019-09-28 00:48:52 |
言語 | C (gcc 12.3.0) |
結果 |
WA
(最新)
AC
(最初)
|
実行時間 | - |
コード長 | 361 bytes |
コンパイル時間 | 366 ms |
コンパイル使用メモリ | 29,568 KB |
実行使用メモリ | 13,880 KB |
最終ジャッジ日時 | 2024-09-25 03:52:08 |
合計ジャッジ時間 | 6,168 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | RE | - |
testcase_03 | TLE | - |
testcase_04 | -- | - |
testcase_05 | -- | - |
testcase_06 | -- | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
ソースコード
#include <stdio.h> int main(){ int n,i,j,p; unsigned long long int M[n][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; }