結果

問題 No.934 Explosive energy drink
ユーザー pengin_2000pengin_2000
提出日時 2021-10-23 18:53:00
言語 C
(gcc 12.3.0)
結果
AC  
実行時間 336 ms / 2,000 ms
コード長 701 bytes
コンパイル時間 345 ms
コンパイル使用メモリ 30,208 KB
実行使用メモリ 25,220 KB
平均クエリ数 709.58
最終ジャッジ日時 2024-09-25 10:17:56
合計ジャッジ時間 6,407 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 25 ms
25,196 KB
testcase_01 AC 335 ms
25,220 KB
testcase_02 AC 21 ms
24,836 KB
testcase_03 AC 164 ms
24,568 KB
testcase_04 AC 336 ms
25,220 KB
testcase_05 AC 21 ms
24,836 KB
testcase_06 AC 21 ms
24,836 KB
testcase_07 AC 21 ms
24,568 KB
testcase_08 AC 20 ms
24,836 KB
testcase_09 AC 21 ms
24,836 KB
testcase_10 AC 21 ms
25,220 KB
testcase_11 AC 23 ms
24,964 KB
testcase_12 AC 23 ms
24,580 KB
testcase_13 AC 26 ms
24,964 KB
testcase_14 AC 26 ms
24,836 KB
testcase_15 AC 105 ms
24,836 KB
testcase_16 AC 37 ms
25,220 KB
testcase_17 AC 62 ms
24,836 KB
testcase_18 AC 62 ms
24,964 KB
testcase_19 AC 124 ms
24,836 KB
testcase_20 AC 214 ms
25,220 KB
testcase_21 AC 233 ms
24,836 KB
testcase_22 AC 322 ms
25,220 KB
testcase_23 AC 333 ms
25,220 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<stdio.h>
int main()
{
	int n;
	scanf("%d", &n);
	int i, j;
	int res[1003];
	int ans;
	for (i = 0; i < n; i++)
	{
		printf("? %d\n", n - 1);
		if (i == n - 1)
		{
			for (j = 0; j < i - 1; j++)
				printf("%d ", j + 1);
			printf("%d\n", n - 1);
		}
		else
		{
			for (j = 0; j < i; j++)
				printf("%d ", j + 1);
			for (j = i + 1; j < n - 1; j++)
				printf("%d ", j + 1);
			printf("%d\n", n);
		}
		fflush(stdout);
		scanf("%d", &ans);
		res[i] = ans;
	}
	j = 0;
	for (i = 0; i < n; i++)
		if (res[i] == 0)
			j++;
	printf("! %d\n", j);
	for (i = 0; i < n; i++)
	{
		if (res[i] > 0)
			continue;
		j--;
		if (j > 0)
			printf("%d ", i + 1);
		else
			printf("%d\n", i + 1);
	}
	return 0;
}
0