結果

問題 No.934 Explosive energy drink
ユーザー htensaihtensai
提出日時 2020-05-08 14:39:02
言語 Java21
(openjdk 21)
結果
TLE  
実行時間 -
コード長 1,206 bytes
コンパイル時間 2,303 ms
コンパイル使用メモリ 78,040 KB
実行使用メモリ 86,256 KB
最終ジャッジ日時 2023-09-24 03:29:21
合計ジャッジ時間 9,187 ms
ジャッジサーバーID
(参考情報)
judge14 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 TLE -
testcase_01 -- -
testcase_02 -- -
testcase_03 -- -
testcase_04 -- -
testcase_05 -- -
testcase_06 -- -
testcase_07 -- -
testcase_08 -- -
testcase_09 -- -
testcase_10 -- -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
	public static void main (String[] args) {
		Scanner sc = new Scanner(System.in);
		int n = sc.nextInt();
		ArrayList<Integer> list = new ArrayList<>();
		for (int i = 1; i <= n; i++) {
		    list.add(i);
		}
		int idx = 0;
		while (idx < list.size()) {
		    output(list, idx);
		    int result = sc.nextInt();
		    if (result == 0) {
		        list.remove(idx);
		    } else {
		        idx++;
		    }
		}
		System.out.println("! " + list.size());
		StringBuilder sb = new StringBuilder();
		for (int i = 0; i < list.size(); i++) {
		    if (i > 0) {
		        sb.append(" ");
		    }
		    sb.append(list.get(i));
		}
		System.out.println(sb);
		System.out.flush();
	}
	
	static void output(ArrayList<Integer> list, int without) {
	    StringBuilder sb = new StringBuilder();
	    sb.append("? ").append(list.size()).append("\n");
	    boolean isFirst = true;
	    for (int i = 0; i < list.size(); i++) {
	        if (without == i) {
	            continue;
	        }
	        if (!isFirst) {
	            sb.append(" ");
	        }
            isFirst = false;
	        sb.append(list.get(i));
	    }
	    System.out.println(sb);
	    System.out.flush();
	}
}
0