結果
問題 | No.893 お客様を誘導せよ |
ユーザー | iwa_choco_168 |
提出日時 | 2019-12-08 20:10:34 |
言語 | Java21 (openjdk 21) |
結果 |
AC
|
実行時間 | 495 ms / 2,000 ms |
コード長 | 926 bytes |
コンパイル時間 | 1,987 ms |
コンパイル使用メモリ | 80,280 KB |
実行使用メモリ | 51,724 KB |
最終ジャッジ日時 | 2024-06-10 03:12:23 |
合計ジャッジ時間 | 5,844 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 109 ms
41,668 KB |
testcase_01 | AC | 109 ms
41,388 KB |
testcase_02 | AC | 227 ms
46,264 KB |
testcase_03 | AC | 384 ms
49,468 KB |
testcase_04 | AC | 334 ms
49,564 KB |
testcase_05 | AC | 333 ms
50,064 KB |
testcase_06 | AC | 296 ms
48,408 KB |
testcase_07 | AC | 103 ms
41,040 KB |
testcase_08 | AC | 495 ms
51,724 KB |
testcase_09 | AC | 163 ms
42,896 KB |
testcase_10 | AC | 118 ms
41,356 KB |
testcase_11 | AC | 163 ms
42,036 KB |
testcase_12 | AC | 187 ms
43,324 KB |
ソースコード
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(); int rep = ans.size(); for(int i = 0; i < rep; i++) { sb.append(ans.poll()); sb.append(" "); } System.out.println(sb.toString().trim()); } }