結果

問題 No.893 お客様を誘導せよ
ユーザー tentententen
提出日時 2020-08-30 21:42:10
言語 Java21
(openjdk 21)
結果
AC  
実行時間 621 ms / 2,000 ms
コード長 849 bytes
コンパイル時間 2,385 ms
コンパイル使用メモリ 77,148 KB
実行使用メモリ 61,524 KB
最終ジャッジ日時 2024-11-15 15:32:42
合計ジャッジ時間 7,175 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 120 ms
53,920 KB
testcase_01 AC 122 ms
54,092 KB
testcase_02 AC 286 ms
58,812 KB
testcase_03 AC 495 ms
59,120 KB
testcase_04 AC 466 ms
59,364 KB
testcase_05 AC 458 ms
59,544 KB
testcase_06 AC 393 ms
59,400 KB
testcase_07 AC 107 ms
52,788 KB
testcase_08 AC 621 ms
61,524 KB
testcase_09 AC 195 ms
56,396 KB
testcase_10 AC 136 ms
54,160 KB
testcase_11 AC 165 ms
54,668 KB
testcase_12 AC 186 ms
56,100 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
	public static void main (String[] args) {
    	Scanner sc = new Scanner(System.in);
    	int n = sc.nextInt();
    	ArrayDeque<ArrayDeque<Integer>> all = new ArrayDeque<>();
    	for (int i = 0; i < n; i++) {
    	    int p = sc.nextInt();
    	    if (p == 0) {
    	        continue;
    	    }
    	    ArrayDeque<Integer> tmp = new ArrayDeque<>();
    	    for (int j = 0; j < p; j++) {
    	        tmp.add(sc.nextInt());
    	    }
    	    all.add(tmp);
    	}
    	StringBuilder sb = new StringBuilder();
    	while (all.size() > 0) {
    	    ArrayDeque<Integer> tmp = all.poll();
    	    if (sb.length() > 0) {
    	        sb.append(" ");
    	    }
    	    sb.append(tmp.poll());
    	    if (tmp.size() > 0) {
    	        all.add(tmp);
    	    }
    	}
    	System.out.println(sb);
    }
}
0