結果

問題 No.610 区間賞(Section Award)
ユーザー tentententen
提出日時 2021-11-12 14:58:27
言語 Java21
(openjdk 21)
結果
AC  
実行時間 547 ms / 2,000 ms
コード長 1,765 bytes
コンパイル時間 2,299 ms
コンパイル使用メモリ 78,788 KB
実行使用メモリ 66,932 KB
最終ジャッジ日時 2024-11-25 01:35:12
合計ジャッジ時間 15,333 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 49 ms
50,020 KB
testcase_01 AC 50 ms
50,408 KB
testcase_02 AC 49 ms
49,828 KB
testcase_03 AC 49 ms
50,036 KB
testcase_04 AC 53 ms
50,376 KB
testcase_05 AC 53 ms
49,960 KB
testcase_06 AC 61 ms
51,100 KB
testcase_07 AC 55 ms
50,144 KB
testcase_08 AC 71 ms
51,088 KB
testcase_09 AC 55 ms
49,940 KB
testcase_10 AC 63 ms
50,816 KB
testcase_11 AC 65 ms
51,328 KB
testcase_12 AC 52 ms
50,032 KB
testcase_13 AC 69 ms
51,112 KB
testcase_14 AC 76 ms
51,196 KB
testcase_15 AC 64 ms
50,596 KB
testcase_16 AC 58 ms
50,180 KB
testcase_17 AC 57 ms
50,436 KB
testcase_18 AC 54 ms
50,252 KB
testcase_19 AC 147 ms
54,920 KB
testcase_20 AC 344 ms
64,004 KB
testcase_21 AC 142 ms
54,308 KB
testcase_22 AC 294 ms
60,460 KB
testcase_23 AC 129 ms
54,172 KB
testcase_24 AC 179 ms
55,184 KB
testcase_25 AC 109 ms
51,968 KB
testcase_26 AC 236 ms
58,416 KB
testcase_27 AC 347 ms
63,280 KB
testcase_28 AC 320 ms
63,312 KB
testcase_29 AC 284 ms
60,736 KB
testcase_30 AC 291 ms
62,892 KB
testcase_31 AC 222 ms
58,660 KB
testcase_32 AC 311 ms
63,392 KB
testcase_33 AC 126 ms
54,272 KB
testcase_34 AC 364 ms
64,496 KB
testcase_35 AC 229 ms
58,260 KB
testcase_36 AC 331 ms
63,324 KB
testcase_37 AC 288 ms
63,172 KB
testcase_38 AC 160 ms
55,392 KB
testcase_39 AC 363 ms
64,452 KB
testcase_40 AC 366 ms
64,776 KB
testcase_41 AC 355 ms
64,216 KB
testcase_42 AC 370 ms
64,296 KB
testcase_43 AC 360 ms
64,948 KB
testcase_44 AC 444 ms
65,936 KB
testcase_45 AC 524 ms
66,932 KB
testcase_46 AC 547 ms
66,596 KB
testcase_47 AC 310 ms
62,732 KB
testcase_48 AC 307 ms
62,968 KB
testcase_49 AC 312 ms
62,708 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import java.io.*;

public class Main {
    public static void main(String[] args) throws Exception {
        Scanner sc = new Scanner();
        int n = sc.nextInt();
        ArrayDeque<Integer> starts = new ArrayDeque<>();
        for (int i = 0; i < n; i++) {
            starts.add(sc.nextInt());
        }
        HashSet<Integer> used = new HashSet<>();
        ArrayList<Integer> ans = new ArrayList<>();
        for (int i = 0; i < n; i++) {
            int x = sc.nextInt();
            if (used.contains(x)) {
                continue;
            }
            ans.add(x);
            while (true) {
                int y = starts.poll();
                used.add(y);
                if (x == y) {
                    break;
                }
            }
        }
        Collections.sort(ans);
        StringBuilder sb = new StringBuilder();
        for (int x : ans) {
            sb.append(x).append("\n");
        }
        System.out.print(sb);
    }
}
class Scanner {
    BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
    StringTokenizer st = new StringTokenizer("");
    
    public Scanner() throws Exception {
        
    }
    
    public int nextInt() throws Exception {
        return Integer.parseInt(next());
    }
    
    public long nextLong() throws Exception {
        return Long.parseLong(next());
    }
    
    public double nextDouble() throws Exception {
        return Double.parseDouble(next());
    }
    
    public String nextLine() throws Exception {
        return br.readLine();
    }
    
    public String next() throws Exception {
        if (!st.hasMoreTokens()) {
            st = new StringTokenizer(br.readLine());
        }
        return st.nextToken();
    }
}
0