結果
問題 | No.893 お客様を誘導せよ |
ユーザー | giru_yukiko |
提出日時 | 2019-12-21 15:15:17 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
RE
|
実行時間 | - |
コード長 | 418 bytes |
コンパイル時間 | 522 ms |
コンパイル使用メモリ | 63,616 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-07-19 10:57:10 |
合計ジャッジ時間 | 2,987 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | RE | - |
testcase_03 | RE | - |
testcase_04 | RE | - |
testcase_05 | RE | - |
testcase_06 | RE | - |
testcase_07 | AC | 2 ms
5,376 KB |
testcase_08 | RE | - |
testcase_09 | RE | - |
testcase_10 | WA | - |
testcase_11 | RE | - |
testcase_12 | RE | - |
ソースコード
#include <iostream> using namespace std; int main(){ int N; long A[100][10000]; long i,k; cin>>N; //レジの台数 for(i=0;i<N;i++){ cin>>A[i][0]; for(k=1;k<=A[i][0];k++){ cin>>A[i][k]; } } for(i=1;i<=N;i++){ for(k=0;k<N;k++){ if(A[k][i]!=0){ cout<<A[k][i]<<" "; } } } cout<<endl; }