結果

問題 No.893 お客様を誘導せよ
ユーザー tentententen
提出日時 2024-07-04 18:46:37
言語 Java21
(openjdk 21)
結果
AC  
実行時間 325 ms / 2,000 ms
コード長 1,845 bytes
コンパイル時間 2,524 ms
コンパイル使用メモリ 90,608 KB
実行使用メモリ 54,172 KB
最終ジャッジ日時 2024-07-04 18:46:43
合計ジャッジ時間 5,762 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 62 ms
38,076 KB
testcase_01 AC 64 ms
38,212 KB
testcase_02 AC 167 ms
41,716 KB
testcase_03 AC 250 ms
49,840 KB
testcase_04 AC 258 ms
50,084 KB
testcase_05 AC 236 ms
47,196 KB
testcase_06 AC 215 ms
47,660 KB
testcase_07 AC 64 ms
37,968 KB
testcase_08 AC 325 ms
54,172 KB
testcase_09 AC 96 ms
38,916 KB
testcase_10 AC 64 ms
37,772 KB
testcase_11 AC 76 ms
38,236 KB
testcase_12 AC 95 ms
38,864 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;
import java.util.*;
import java.util.function.*;
import java.util.stream.*;

public class Main {
    public static void main(String[] args) throws Exception {
        Scanner sc = new Scanner();
        int n = sc.nextInt();
        Deque<Deque<Integer>> deq = new ArrayDeque<>();
        for (int i = 0; i < n; i++) {
            int p = sc.nextInt();
            if (p == 0) {
                continue;
            }
            Deque<Integer> current = new ArrayDeque<>();
            while (p-- > 0) {
                current.add(sc.nextInt());
            }
            deq.add(current);
        }
        List<Integer> ans = new ArrayList<>();
        while (deq.size() > 0) {
            Deque<Integer> current = deq.poll();
            ans.add(current.poll());
            if (current.size() > 0) {
                deq.add(current);
            }
        }
        System.out.println(ans.stream().map(x -> x.toString()).collect(Collectors.joining(" ")));
    }
}
class Scanner {
    BufferedReader br;
    StringTokenizer st = new StringTokenizer("");
    StringBuilder sb = new StringBuilder();
    
    public Scanner() {
        try {
            br = new BufferedReader(new InputStreamReader(System.in));
        } catch (Exception e) {
            
        }
    }
    
    public int nextInt() {
        return Integer.parseInt(next());
    }
    
    public long nextLong() {
        return Long.parseLong(next());
    }
    
    public double nextDouble() {
        return Double.parseDouble(next());
    }
    
    public String next() {
        try {
            while (!st.hasMoreTokens()) {
                st = new StringTokenizer(br.readLine());
            }
        } catch (Exception e) {
            e.printStackTrace();
        } finally {
            return st.nextToken();
        }
    }
    
}


0