結果
問題 | No.893 お客様を誘導せよ |
ユーザー | iwa_choco_168 |
提出日時 | 2019-12-08 20:07:12 |
言語 | Java21 (openjdk 21) |
結果 |
WA
|
実行時間 | - |
コード長 | 907 bytes |
コンパイル時間 | 2,482 ms |
コンパイル使用メモリ | 80,056 KB |
実行使用メモリ | 62,016 KB |
最終ジャッジ日時 | 2024-06-10 03:09:14 |
合計ジャッジ時間 | 5,654 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | AC | 110 ms
53,880 KB |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
ソースコード
import java.util.*; public class Main { public static void main(String[] args) { Scanner sc = new Scanner(System.in); int n = Integer.parseInt(sc.next()); ArrayDeque<Integer>[] queue = new ArrayDeque[n]; for(int i = 0; i < n; i++) { queue[i] = new ArrayDeque<Integer>(); int rep = Integer.parseInt(sc.next()); for(int j = 0; j < rep; j++) { queue[i].add(Integer.parseInt(sc.next())); } } Queue<Integer> ans = new ArrayDeque<>(); boolean flag; while(true) { flag = true; for(int i = 0; i < n; i++) { if(queue[i].size() == 0) continue; ans.add(queue[i].poll()); flag = false; } if(flag) break; } StringBuilder sb = new StringBuilder(); for(int i = 0; i < ans.size(); i++) { sb.append(ans.poll()); sb.append(" "); } System.out.println(sb.toString().trim()); } }