結果

問題 No.934 Explosive energy drink
ユーザー FromBooskaFromBooska
提出日時 2023-08-10 10:27:37
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 502 ms / 2,000 ms
コード長 544 bytes
コンパイル時間 333 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 93,656 KB
平均クエリ数 709.58
最終ジャッジ日時 2024-11-16 13:17:58
合計ジャッジ時間 8,149 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 63 ms
68,576 KB
testcase_01 AC 491 ms
93,528 KB
testcase_02 AC 64 ms
68,440 KB
testcase_03 AC 294 ms
93,168 KB
testcase_04 AC 502 ms
93,400 KB
testcase_05 AC 63 ms
69,208 KB
testcase_06 AC 59 ms
68,184 KB
testcase_07 AC 62 ms
68,056 KB
testcase_08 AC 63 ms
68,568 KB
testcase_09 AC 60 ms
68,312 KB
testcase_10 AC 62 ms
67,800 KB
testcase_11 AC 62 ms
68,736 KB
testcase_12 AC 83 ms
79,576 KB
testcase_13 AC 87 ms
80,216 KB
testcase_14 AC 98 ms
82,136 KB
testcase_15 AC 209 ms
92,248 KB
testcase_16 AC 111 ms
90,968 KB
testcase_17 AC 144 ms
92,632 KB
testcase_18 AC 150 ms
92,376 KB
testcase_19 AC 228 ms
92,760 KB
testcase_20 AC 348 ms
92,888 KB
testcase_21 AC 368 ms
93,016 KB
testcase_22 AC 475 ms
93,656 KB
testcase_23 AC 497 ms
93,016 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# インタラクティブ
# K種類の魔剤、1つでも入っていないと爆発しない
# ある番号を抜かして試す、それでも爆発するならその番号はいらないということ

N = int(input())
no_need = set()
for i in range(1, N+1):
    print('?', N-1)
    l = [a for a in range(1, N+1) if a != i]
    print(*l)
    ans = int(input())
    if ans == 1:
        no_need.add(i)
needed = []
for i in range(1, N+1):
    if i not in no_need:
        needed.append(i)
needed.sort()
print('!', len(needed))
print(*needed)
0