結果

問題 No.934 Explosive energy drink
ユーザー tatt61880tatt61880
提出日時 2021-03-28 14:07:58
言語 Kuin
(KuinC++ v.2021.9.17)
結果
AC  
実行時間 1,157 ms / 2,000 ms
コード長 648 bytes
コンパイル時間 2,491 ms
コンパイル使用メモリ 146,824 KB
実行使用メモリ 25,220 KB
平均クエリ数 709.58
最終ジャッジ日時 2024-09-16 12:16:18
合計ジャッジ時間 12,187 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 26 ms
25,196 KB
testcase_01 AC 1,127 ms
24,836 KB
testcase_02 AC 24 ms
25,220 KB
testcase_03 AC 518 ms
25,220 KB
testcase_04 AC 1,157 ms
25,220 KB
testcase_05 AC 24 ms
24,836 KB
testcase_06 AC 23 ms
24,964 KB
testcase_07 AC 23 ms
24,580 KB
testcase_08 AC 23 ms
24,580 KB
testcase_09 AC 23 ms
24,964 KB
testcase_10 AC 23 ms
24,580 KB
testcase_11 AC 22 ms
25,220 KB
testcase_12 AC 25 ms
24,836 KB
testcase_13 AC 33 ms
24,580 KB
testcase_14 AC 37 ms
25,220 KB
testcase_15 AC 311 ms
25,220 KB
testcase_16 AC 72 ms
25,220 KB
testcase_17 AC 149 ms
25,076 KB
testcase_18 AC 156 ms
24,836 KB
testcase_19 AC 383 ms
25,220 KB
testcase_20 AC 700 ms
25,220 KB
testcase_21 AC 764 ms
24,964 KB
testcase_22 AC 1,116 ms
25,220 KB
testcase_23 AC 1,139 ms
24,836 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

func main()
	var n: int :: cui@inputInt()
	var a: []bool :: #[n]bool
	var cnt: int :: 0
	for i(0, n - 1)
		var firstFlag: bool :: true
		do cui@print("? \{n - 1}\n")
		for j(0, n - 1)
			if(j <> i)
				do cui@print("\{firstFlag ?("", " ")}\{j + 1}")
				do firstFlag :: false
			end if
		end for
		do cui@print("\n")
		do cui@flush()
		if(cui@inputInt() = 0)
			do a[i] :: true
			do cnt :+ 1
		end if
	end for
	
	block
		do cui@print("! \{cnt}\n")
		var firstFlag: bool :: true
		for i(0, n - 1)
			if(a[i])
				do cui@print("\{firstFlag ?("", " ")}\{i + 1}")
				do firstFlag :: false
			end if
		end for
		do cui@print("\n")
	end block
end func
0