結果
問題 | No.893 お客様を誘導せよ |
ユーザー | giru_yukiko |
提出日時 | 2019-12-21 15:09:06 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
RE
|
実行時間 | - |
コード長 | 421 bytes |
コンパイル時間 | 491 ms |
コンパイル使用メモリ | 63,232 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-07-19 10:45:58 |
合計ジャッジ時間 | 4,003 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | RE | - |
testcase_01 | RE | - |
testcase_02 | RE | - |
testcase_03 | RE | - |
testcase_04 | RE | - |
testcase_05 | RE | - |
testcase_06 | RE | - |
testcase_07 | RE | - |
testcase_08 | RE | - |
testcase_09 | RE | - |
testcase_10 | RE | - |
testcase_11 | RE | - |
testcase_12 | RE | - |
ソースコード
#include <iostream> using namespace std; int main(){ int N,P; int A[1000][1000000]; int 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; }