結果

問題 No.610 区間賞(Section Award)
ユーザー htensaihtensai
提出日時 2020-01-27 09:07:25
言語 Java21
(openjdk 21)
結果
AC  
実行時間 1,166 ms / 2,000 ms
コード長 1,095 bytes
コンパイル時間 2,880 ms
コンパイル使用メモリ 80,360 KB
実行使用メモリ 78,924 KB
最終ジャッジ日時 2024-09-14 11:50:07
合計ジャッジ時間 34,453 ms
ジャッジサーバーID
(参考情報)
judge6 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 136 ms
54,036 KB
testcase_01 AC 135 ms
53,944 KB
testcase_02 AC 136 ms
54,084 KB
testcase_03 AC 135 ms
53,904 KB
testcase_04 AC 138 ms
53,868 KB
testcase_05 AC 172 ms
54,176 KB
testcase_06 AC 203 ms
56,424 KB
testcase_07 AC 187 ms
54,000 KB
testcase_08 AC 210 ms
56,612 KB
testcase_09 AC 194 ms
54,228 KB
testcase_10 AC 206 ms
56,544 KB
testcase_11 AC 207 ms
56,320 KB
testcase_12 AC 148 ms
53,768 KB
testcase_13 AC 209 ms
56,436 KB
testcase_14 AC 209 ms
56,452 KB
testcase_15 AC 204 ms
56,456 KB
testcase_16 AC 195 ms
54,296 KB
testcase_17 AC 194 ms
54,088 KB
testcase_18 AC 189 ms
54,092 KB
testcase_19 AC 481 ms
59,304 KB
testcase_20 AC 964 ms
76,468 KB
testcase_21 AC 394 ms
59,240 KB
testcase_22 AC 755 ms
70,020 KB
testcase_23 AC 327 ms
58,632 KB
testcase_24 AC 547 ms
59,520 KB
testcase_25 AC 287 ms
58,400 KB
testcase_26 AC 623 ms
61,648 KB
testcase_27 AC 896 ms
73,120 KB
testcase_28 AC 882 ms
71,372 KB
testcase_29 AC 733 ms
66,752 KB
testcase_30 AC 949 ms
71,072 KB
testcase_31 AC 685 ms
61,708 KB
testcase_32 AC 945 ms
73,388 KB
testcase_33 AC 400 ms
59,132 KB
testcase_34 AC 914 ms
74,348 KB
testcase_35 AC 707 ms
63,716 KB
testcase_36 AC 954 ms
74,152 KB
testcase_37 AC 804 ms
70,684 KB
testcase_38 AC 513 ms
59,232 KB
testcase_39 AC 1,042 ms
76,900 KB
testcase_40 AC 956 ms
78,924 KB
testcase_41 AC 1,029 ms
76,848 KB
testcase_42 AC 981 ms
77,036 KB
testcase_43 AC 936 ms
76,816 KB
testcase_44 AC 1,025 ms
75,220 KB
testcase_45 AC 1,166 ms
78,580 KB
testcase_46 AC 1,098 ms
76,568 KB
testcase_47 AC 828 ms
71,760 KB
testcase_48 AC 883 ms
70,800 KB
testcase_49 AC 896 ms
70,792 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<Integer> befores = new ArrayDeque<>();
        ArrayDeque<Integer> afters = new ArrayDeque<>();
        for (int i = 0; i < n; i++) {
            befores.add(sc.nextInt());
        }
        for (int i = 0; i < n; i++) {
            afters.add(sc.nextInt());
        }
        HashSet<Integer> loses = new HashSet<>();
        TreeSet<Integer> wins = new TreeSet<>();
        while (afters.size() > 0) {
            int x = afters.poll();
            if (loses.contains(x)) {
                continue;
            }
            while (befores.size() > 0) {
                int y = befores.poll();
                if (x == y) {
                    break;
                }
                loses.add(y);
            }
            wins.add(x);
        }
        StringBuilder sb = new StringBuilder();
        for (int x : wins) {
            sb.append(x).append("\n");
        }
        System.out.print(sb);
    }
}
0