結果

問題 No.2779 Don't make Pair
ユーザー tentententen
提出日時 2024-06-10 18:19:53
言語 Java
(openjdk 23)
結果
AC  
実行時間 423 ms / 2,000 ms
コード長 1,957 bytes
コンパイル時間 2,719 ms
コンパイル使用メモリ 89,772 KB
実行使用メモリ 59,456 KB
最終ジャッジ日時 2025-01-02 13:29:32
合計ジャッジ時間 10,274 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 72 ms
39,364 KB
testcase_01 AC 74 ms
39,348 KB
testcase_02 AC 75 ms
39,268 KB
testcase_03 AC 69 ms
39,168 KB
testcase_04 AC 76 ms
39,168 KB
testcase_05 AC 65 ms
39,256 KB
testcase_06 AC 69 ms
39,284 KB
testcase_07 AC 67 ms
39,396 KB
testcase_08 AC 67 ms
39,280 KB
testcase_09 AC 150 ms
43,272 KB
testcase_10 AC 208 ms
47,332 KB
testcase_11 AC 168 ms
44,060 KB
testcase_12 AC 257 ms
47,340 KB
testcase_13 AC 271 ms
48,500 KB
testcase_14 AC 271 ms
47,960 KB
testcase_15 AC 274 ms
49,676 KB
testcase_16 AC 284 ms
48,680 KB
testcase_17 AC 331 ms
51,188 KB
testcase_18 AC 303 ms
47,584 KB
testcase_19 AC 258 ms
48,444 KB
testcase_20 AC 232 ms
46,368 KB
testcase_21 AC 301 ms
50,872 KB
testcase_22 AC 282 ms
49,856 KB
testcase_23 AC 423 ms
59,456 KB
testcase_24 AC 288 ms
48,240 KB
testcase_25 AC 295 ms
49,192 KB
testcase_26 AC 305 ms
50,124 KB
testcase_27 AC 316 ms
51,008 KB
testcase_28 AC 307 ms
50,404 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