結果

問題 No.2774 Wake up Record 2
ユーザー ks2mks2m
提出日時 2024-06-07 21:50:34
言語 Java21
(openjdk 21)
結果
AC  
実行時間 673 ms / 2,000 ms
コード長 862 bytes
コンパイル時間 4,217 ms
コンパイル使用メモリ 77,904 KB
実行使用メモリ 62,816 KB
最終ジャッジ日時 2024-06-07 21:50:45
合計ジャッジ時間 8,918 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 104 ms
52,620 KB
testcase_01 AC 122 ms
54,132 KB
testcase_02 AC 126 ms
54,100 KB
testcase_03 AC 125 ms
53,996 KB
testcase_04 AC 126 ms
53,852 KB
testcase_05 AC 123 ms
54,008 KB
testcase_06 AC 126 ms
54,120 KB
testcase_07 AC 124 ms
54,036 KB
testcase_08 AC 138 ms
54,092 KB
testcase_09 AC 215 ms
57,352 KB
testcase_10 AC 180 ms
54,276 KB
testcase_11 AC 404 ms
58,912 KB
testcase_12 AC 341 ms
58,852 KB
testcase_13 AC 568 ms
59,652 KB
testcase_14 AC 673 ms
61,308 KB
testcase_15 AC 583 ms
61,740 KB
testcase_16 AC 637 ms
60,596 KB
testcase_17 AC 658 ms
62,816 KB
testcase_18 AC 528 ms
59,124 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

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

		int ok = 1000000001;
		int ng = 0;
		while (Math.abs(ok - ng) > 1) {
			int mid = (ok + ng) / 2;
			int cnt = 0;
			for (int i = 0; i < n; i++) {
				if (a[i] < mid) {
					cnt++;
				}
			}
			if (cnt >= k) {
				ok = mid;
			} else {
				ng = mid;
			}
		}

		int cnt = 0;
		StringBuilder sb = new StringBuilder();
		for (int i = 1; i < n; i++) {
			if (a[i - 1] < ok && a[i] >= ok) {
				cnt++;
				sb.append(i + 1).append(' ');
			}
		}
		if (cnt > 0) {
			sb.deleteCharAt(sb.length() - 1);
		}
		System.out.println(cnt);
		System.out.println(sb.toString());
	}
}
0