結果

問題 No.2779 Don't make Pair
ユーザー tentententen
提出日時 2024-06-10 18:19:53
言語 Java21
(openjdk 21)
結果
AC  
実行時間 400 ms / 2,000 ms
コード長 1,957 bytes
コンパイル時間 3,463 ms
コンパイル使用メモリ 91,728 KB
実行使用メモリ 64,320 KB
最終ジャッジ日時 2024-06-10 18:20:05
合計ジャッジ時間 10,683 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 61 ms
51,108 KB
testcase_01 AC 64 ms
51,200 KB
testcase_02 AC 62 ms
50,596 KB
testcase_03 AC 62 ms
51,220 KB
testcase_04 AC 59 ms
50,688 KB
testcase_05 AC 63 ms
51,204 KB
testcase_06 AC 69 ms
51,116 KB
testcase_07 AC 65 ms
51,120 KB
testcase_08 AC 64 ms
51,264 KB
testcase_09 AC 143 ms
52,704 KB
testcase_10 AC 203 ms
56,324 KB
testcase_11 AC 156 ms
54,936 KB
testcase_12 AC 238 ms
56,652 KB
testcase_13 AC 213 ms
58,832 KB
testcase_14 AC 255 ms
57,220 KB
testcase_15 AC 258 ms
58,668 KB
testcase_16 AC 264 ms
56,848 KB
testcase_17 AC 316 ms
61,144 KB
testcase_18 AC 287 ms
56,952 KB
testcase_19 AC 252 ms
56,960 KB
testcase_20 AC 203 ms
56,736 KB
testcase_21 AC 280 ms
59,048 KB
testcase_22 AC 257 ms
58,664 KB
testcase_23 AC 400 ms
64,320 KB
testcase_24 AC 256 ms
56,832 KB
testcase_25 AC 269 ms
58,848 KB
testcase_26 AC 300 ms
59,340 KB
testcase_27 AC 285 ms
59,372 KB
testcase_28 AC 290 ms
58,992 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();
        int[] values = new int[n];
        for (int i = 0; i < n; i++) {
            values[i] = sc.nextInt();
        }
        Set<Integer> leftExist = new HashSet<>();
        int left = 0;
        for (int i = 0; i < n && !leftExist.contains(values[i]); i++) {
            left = i;
            leftExist.add(values[i]);
        }
        Set<Integer> rightExist = new HashSet<>();
        int right = 0;
        for (int i = n - 1; i >= 0 && !rightExist.contains(values[i]); i--) {
            right = i;
            rightExist.add(values[i]);
        }
        List<Integer> ans = new ArrayList<>();
        for (int i = Math.max(1, right); i <= left + 1 && i < n; i++) {
            ans.add(i);
        }
        System.out.println(ans.size());
        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