結果
問題 | No.893 お客様を誘導せよ |
ユーザー | sitihi |
提出日時 | 2019-09-28 00:38:40 |
言語 | C (gcc 12.3.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 347 bytes |
コンパイル時間 | 127 ms |
コンパイル使用メモリ | 29,312 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-09-25 03:39:59 |
合計ジャッジ時間 | 830 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
6,812 KB |
testcase_01 | AC | 1 ms
6,944 KB |
testcase_02 | AC | 4 ms
6,940 KB |
testcase_03 | AC | 11 ms
6,944 KB |
testcase_04 | AC | 10 ms
6,940 KB |
testcase_05 | AC | 10 ms
6,940 KB |
testcase_06 | AC | 6 ms
6,940 KB |
testcase_07 | AC | 1 ms
6,940 KB |
testcase_08 | AC | 21 ms
6,940 KB |
testcase_09 | WA | - |
testcase_10 | AC | 1 ms
6,944 KB |
testcase_11 | WA | - |
testcase_12 | WA | - |
ソースコード
#include <stdio.h> int main(){ int n,i,j,p; 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("%llu ", M[i][j]); } } } return 0; }