結果

問題 No.610 区間賞(Section Award)
ユーザー tentententen
提出日時 2020-12-25 09:33:19
言語 Java21
(openjdk 21)
結果
AC  
実行時間 1,243 ms / 2,000 ms
コード長 854 bytes
コンパイル時間 2,430 ms
コンパイル使用メモリ 86,396 KB
実行使用メモリ 73,048 KB
最終ジャッジ日時 2024-09-22 02:12:30
合計ジャッジ時間 32,278 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 131 ms
40,928 KB
testcase_01 AC 132 ms
41,172 KB
testcase_02 AC 130 ms
41,064 KB
testcase_03 AC 130 ms
41,332 KB
testcase_04 AC 133 ms
41,240 KB
testcase_05 AC 163 ms
41,568 KB
testcase_06 AC 265 ms
42,884 KB
testcase_07 AC 176 ms
41,928 KB
testcase_08 AC 198 ms
43,252 KB
testcase_09 AC 188 ms
42,132 KB
testcase_10 AC 200 ms
43,112 KB
testcase_11 AC 202 ms
43,148 KB
testcase_12 AC 146 ms
41,824 KB
testcase_13 AC 203 ms
43,224 KB
testcase_14 AC 199 ms
43,044 KB
testcase_15 AC 196 ms
42,796 KB
testcase_16 AC 195 ms
42,964 KB
testcase_17 AC 198 ms
42,424 KB
testcase_18 AC 174 ms
41,896 KB
testcase_19 AC 479 ms
49,324 KB
testcase_20 AC 896 ms
62,424 KB
testcase_21 AC 423 ms
49,076 KB
testcase_22 AC 725 ms
55,748 KB
testcase_23 AC 328 ms
48,168 KB
testcase_24 AC 514 ms
49,728 KB
testcase_25 AC 274 ms
46,944 KB
testcase_26 AC 660 ms
50,816 KB
testcase_27 AC 833 ms
62,308 KB
testcase_28 AC 760 ms
57,988 KB
testcase_29 AC 709 ms
54,236 KB
testcase_30 AC 815 ms
57,384 KB
testcase_31 AC 577 ms
50,828 KB
testcase_32 AC 874 ms
59,260 KB
testcase_33 AC 394 ms
48,948 KB
testcase_34 AC 876 ms
62,348 KB
testcase_35 AC 643 ms
50,792 KB
testcase_36 AC 866 ms
59,580 KB
testcase_37 AC 822 ms
56,576 KB
testcase_38 AC 493 ms
49,544 KB
testcase_39 AC 890 ms
63,920 KB
testcase_40 AC 898 ms
63,428 KB
testcase_41 AC 890 ms
63,788 KB
testcase_42 AC 936 ms
63,784 KB
testcase_43 AC 929 ms
63,332 KB
testcase_44 AC 1,105 ms
68,348 KB
testcase_45 AC 1,243 ms
73,048 KB
testcase_46 AC 1,223 ms
71,880 KB
testcase_47 AC 841 ms
57,872 KB
testcase_48 AC 809 ms
56,868 KB
testcase_49 AC 845 ms
57,860 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        int n = sc.nextInt();
        int[] before = new int[n];
        for (int i = 0; i < n; i++) {
            before[i] = sc.nextInt();
        }
        int idx = 0;
        HashSet<Integer> used = new HashSet<>();
        TreeSet<Integer> ans = new TreeSet<>();
        for (int i = 0; i < n; i++) {
            int x = sc.nextInt();
            if (!used.contains(x)) {
                ans.add(x);
                while (before[idx] != x) {
                    used.add(before[idx]);
                    idx++;
                }
            }
        }
        StringBuilder sb = new StringBuilder();
        for (int x : ans) {
            sb.append(x).append("\n");
        }
        System.out.print(sb);
    }
}
0