結果
問題 | No.893 お客様を誘導せよ |
ユーザー | sitihi |
提出日時 | 2019-09-28 00:52:16 |
言語 | C (gcc 12.3.0) |
結果 |
WA
(最新)
AC
(最初)
|
実行時間 | - |
コード長 | 360 bytes |
コンパイル時間 | 278 ms |
コンパイル使用メモリ | 29,824 KB |
実行使用メモリ | 14,016 KB |
最終ジャッジ日時 | 2024-09-25 03:54:20 |
合計ジャッジ時間 | 6,776 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | RE | - |
testcase_02 | WA | - |
testcase_03 | RE | - |
testcase_04 | WA | - |
testcase_05 | RE | - |
testcase_06 | RE | - |
testcase_07 | WA | - |
testcase_08 | TLE | - |
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; }