結果

問題 No.934 Explosive energy drink
ユーザー ks2mks2m
提出日時 2019-11-29 22:14:52
言語 Java21
(openjdk 21)
結果
AC  
実行時間 755 ms / 2,000 ms
コード長 840 bytes
コンパイル時間 2,522 ms
コンパイル使用メモリ 80,032 KB
実行使用メモリ 65,892 KB
平均クエリ数 709.58
最終ジャッジ日時 2024-07-16 18:31:14
合計ジャッジ時間 12,506 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 146 ms
58,168 KB
testcase_01 AC 719 ms
65,804 KB
testcase_02 AC 155 ms
57,200 KB
testcase_03 AC 511 ms
64,952 KB
testcase_04 AC 755 ms
65,676 KB
testcase_05 AC 167 ms
58,388 KB
testcase_06 AC 144 ms
58,208 KB
testcase_07 AC 147 ms
58,716 KB
testcase_08 AC 159 ms
58,308 KB
testcase_09 AC 146 ms
57,000 KB
testcase_10 AC 151 ms
58,372 KB
testcase_11 AC 156 ms
58,312 KB
testcase_12 AC 171 ms
58,428 KB
testcase_13 AC 206 ms
58,380 KB
testcase_14 AC 211 ms
58,260 KB
testcase_15 AC 433 ms
64,164 KB
testcase_16 AC 265 ms
60,592 KB
testcase_17 AC 339 ms
62,316 KB
testcase_18 AC 341 ms
62,104 KB
testcase_19 AC 455 ms
65,036 KB
testcase_20 AC 573 ms
64,904 KB
testcase_21 AC 578 ms
65,264 KB
testcase_22 AC 715 ms
65,892 KB
testcase_23 AC 703 ms
65,728 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();

		boolean[] b = new boolean[n];
		int k = 0;
		for (int i = 0; i < n; i++) {
			System.out.println("? " + (n - 1));
			StringBuilder sb = new StringBuilder();
			for (int j = 0; j < n; j++) {
				if (i != j) {
					sb.append(j + 1).append(' ');
				}
			}
			sb.deleteCharAt(sb.length() - 1);
			System.out.println(sb.toString());

			int ans = sc.nextInt();
			if (ans == 0) {
				k++;
				b[i] = true;
			}
		}
		sc.close();

		System.out.println("! " + k);
		StringBuilder sb = new StringBuilder();
		for (int j = 0; j < n; j++) {
			if (b[j]) {
				sb.append(j + 1).append(' ');
			}
		}
		sb.deleteCharAt(sb.length() - 1);
		System.out.println(sb.toString());
	}
}
0