結果

問題 No.2779 Don't make Pair
ユーザー ks2mks2m
提出日時 2024-06-07 21:45:51
言語 Java21
(openjdk 21)
結果
AC  
実行時間 668 ms / 2,000 ms
コード長 894 bytes
コンパイル時間 3,566 ms
コンパイル使用メモリ 78,664 KB
実行使用メモリ 54,132 KB
最終ジャッジ日時 2024-06-07 21:46:09
合計ジャッジ時間 15,582 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 112 ms
40,940 KB
testcase_01 AC 110 ms
41,240 KB
testcase_02 AC 117 ms
41,196 KB
testcase_03 AC 102 ms
40,216 KB
testcase_04 AC 109 ms
41,204 KB
testcase_05 AC 107 ms
41,120 KB
testcase_06 AC 95 ms
39,468 KB
testcase_07 AC 107 ms
41,412 KB
testcase_08 AC 107 ms
40,808 KB
testcase_09 AC 257 ms
47,388 KB
testcase_10 AC 417 ms
47,104 KB
testcase_11 AC 305 ms
47,752 KB
testcase_12 AC 372 ms
46,944 KB
testcase_13 AC 467 ms
48,264 KB
testcase_14 AC 425 ms
49,148 KB
testcase_15 AC 552 ms
49,972 KB
testcase_16 AC 540 ms
49,584 KB
testcase_17 AC 484 ms
50,696 KB
testcase_18 AC 467 ms
49,428 KB
testcase_19 AC 539 ms
49,852 KB
testcase_20 AC 397 ms
48,920 KB
testcase_21 AC 577 ms
50,424 KB
testcase_22 AC 566 ms
49,156 KB
testcase_23 AC 668 ms
54,132 KB
testcase_24 AC 551 ms
49,864 KB
testcase_25 AC 546 ms
49,056 KB
testcase_26 AC 588 ms
51,484 KB
testcase_27 AC 582 ms
52,428 KB
testcase_28 AC 554 ms
50,652 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.HashSet;
import java.util.Scanner;
import java.util.Set;

public class Main {
	public static void main(String[] args) throws Exception {
		Scanner sc = new Scanner(System.in);
		int n = sc.nextInt();
		int[] a = new int[n];
		for (int i = 0; i < n; i++) {
			a[i] = sc.nextInt();
		}
		sc.close();

		Set<Integer> set = new HashSet<>();
		int r = n - 1;
		for (int i = 0; i < n; i++) {
			if (!set.add(a[i])) {
				r = i;
				break;
			}
		}

		set.clear();
		int l = 0;
		for (int i = n - 1; i >= 0; i--) {
			if (!set.add(a[i])) {
				l = i;
				break;
			}
		}

		int ans = Math.max(r - l, 0);
		System.out.println(ans);
		if (ans == 0) {
			System.out.println();
		} else {
			StringBuilder sb = new StringBuilder();
			for (int i = l; i < r; i++) {
				sb.append(i + 1).append(' ');
			}
			sb.deleteCharAt(sb.length() - 1);
			System.out.println(sb.toString());
		}
	}
}
0