結果

問題 No.610 区間賞(Section Award)
ユーザー tentententen
提出日時 2023-01-31 10:50:02
言語 Java21
(openjdk 21)
結果
AC  
実行時間 472 ms / 2,000 ms
コード長 2,259 bytes
コンパイル時間 2,807 ms
コンパイル使用メモリ 85,788 KB
実行使用メモリ 54,924 KB
最終ジャッジ日時 2024-06-30 15:12:23
合計ジャッジ時間 15,138 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 48 ms
37,116 KB
testcase_01 AC 48 ms
37,100 KB
testcase_02 AC 48 ms
37,132 KB
testcase_03 AC 47 ms
36,768 KB
testcase_04 AC 50 ms
37,140 KB
testcase_05 AC 52 ms
37,012 KB
testcase_06 AC 68 ms
37,900 KB
testcase_07 AC 52 ms
37,268 KB
testcase_08 AC 71 ms
38,400 KB
testcase_09 AC 51 ms
37,332 KB
testcase_10 AC 59 ms
38,068 KB
testcase_11 AC 74 ms
38,132 KB
testcase_12 AC 48 ms
36,876 KB
testcase_13 AC 63 ms
37,912 KB
testcase_14 AC 60 ms
37,836 KB
testcase_15 AC 70 ms
38,308 KB
testcase_16 AC 55 ms
37,264 KB
testcase_17 AC 54 ms
37,308 KB
testcase_18 AC 52 ms
36,728 KB
testcase_19 AC 166 ms
46,724 KB
testcase_20 AC 304 ms
53,792 KB
testcase_21 AC 131 ms
42,396 KB
testcase_22 AC 289 ms
50,804 KB
testcase_23 AC 133 ms
42,016 KB
testcase_24 AC 175 ms
44,728 KB
testcase_25 AC 110 ms
40,132 KB
testcase_26 AC 248 ms
48,080 KB
testcase_27 AC 351 ms
54,852 KB
testcase_28 AC 334 ms
53,204 KB
testcase_29 AC 286 ms
49,796 KB
testcase_30 AC 360 ms
53,472 KB
testcase_31 AC 232 ms
48,252 KB
testcase_32 AC 333 ms
54,924 KB
testcase_33 AC 140 ms
42,468 KB
testcase_34 AC 334 ms
54,296 KB
testcase_35 AC 257 ms
48,304 KB
testcase_36 AC 305 ms
53,748 KB
testcase_37 AC 331 ms
53,116 KB
testcase_38 AC 169 ms
46,356 KB
testcase_39 AC 369 ms
54,520 KB
testcase_40 AC 351 ms
54,568 KB
testcase_41 AC 358 ms
54,596 KB
testcase_42 AC 349 ms
54,436 KB
testcase_43 AC 362 ms
54,632 KB
testcase_44 AC 434 ms
51,656 KB
testcase_45 AC 471 ms
53,200 KB
testcase_46 AC 472 ms
52,304 KB
testcase_47 AC 342 ms
53,692 KB
testcase_48 AC 292 ms
51,972 KB
testcase_49 AC 338 ms
53,888 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

public class Main {
    public static void main(String[] args) throws Exception {
        Scanner sc = new Scanner();
        int n = sc.nextInt();
        ArrayDeque<Integer> prev = new ArrayDeque<>();
        for (int i = 0; i < n; i++) {
            prev.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;
            }
            while (prev.size() > 0) {
                int y = prev.poll();
                if (x == y) {
                    ans.add(x);
                    break;
                }
                used.add(y);
            }
        }
        Collections.sort(ans);
        StringBuilder sb = new StringBuilder();
        for (int x : ans) {
            sb.append(x).append("\n");
        }
        System.out.print(sb);
    }
    
}

class Utilities {
    static String arrayToLineString(Object[] arr) {
        return Arrays.stream(arr).map(x -> x.toString()).collect(Collectors.joining("\n"));
    }
    
    static String arrayToLineString(int[] arr) {
        return String.join("\n", Arrays.stream(arr).mapToObj(String::valueOf).toArray(String[]::new));
    }
}
class Scanner {
    BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
    StringTokenizer st = new StringTokenizer("");
    StringBuilder sb = new StringBuilder();
    
    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 int[] nextIntArray() throws Exception {
        return Stream.of(br.readLine().split(" ")).mapToInt(Integer::parseInt).toArray();
    }
    
    public String next() throws Exception {
        while (!st.hasMoreTokens()) {
            st = new StringTokenizer(br.readLine());
        }
        return st.nextToken();
    }
    
}
0