結果

問題 No.2779 Don't make Pair
ユーザー tentententen
提出日時 2024-06-10 18:18:21
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 1,948 bytes
コンパイル時間 2,881 ms
コンパイル使用メモリ 83,636 KB
実行使用メモリ 54,760 KB
最終ジャッジ日時 2024-06-10 18:18:32
合計ジャッジ時間 10,224 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 53 ms
37,688 KB
testcase_01 AC 55 ms
37,716 KB
testcase_02 WA -
testcase_03 AC 54 ms
37,604 KB
testcase_04 AC 53 ms
37,192 KB
testcase_05 AC 58 ms
38,072 KB
testcase_06 WA -
testcase_07 AC 59 ms
37,648 KB
testcase_08 AC 54 ms
37,512 KB
testcase_09 AC 127 ms
41,020 KB
testcase_10 AC 187 ms
45,644 KB
testcase_11 AC 149 ms
41,684 KB
testcase_12 AC 231 ms
46,168 KB
testcase_13 AC 242 ms
47,216 KB
testcase_14 WA -
testcase_15 AC 251 ms
48,596 KB
testcase_16 AC 252 ms
46,904 KB
testcase_17 AC 308 ms
49,760 KB
testcase_18 WA -
testcase_19 AC 240 ms
46,656 KB
testcase_20 AC 194 ms
45,540 KB
testcase_21 AC 284 ms
49,292 KB
testcase_22 AC 250 ms
47,820 KB
testcase_23 AC 414 ms
54,760 KB
testcase_24 AC 281 ms
46,488 KB
testcase_25 AC 266 ms
47,728 KB
testcase_26 AC 283 ms
49,004 KB
testcase_27 AC 287 ms
49,668 KB
testcase_28 AC 277 ms
48,684 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++) {
            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