結果

問題 No.934 Explosive energy drink
ユーザー brthyyjpbrthyyjp
提出日時 2022-01-12 13:53:04
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 482 ms / 2,000 ms
コード長 401 bytes
コンパイル時間 336 ms
コンパイル使用メモリ 82,020 KB
実行使用メモリ 93,600 KB
平均クエリ数 709.58
最終ジャッジ日時 2024-11-15 11:53:14
合計ジャッジ時間 7,646 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 63 ms
68,816 KB
testcase_01 AC 478 ms
93,148 KB
testcase_02 AC 61 ms
69,816 KB
testcase_03 AC 274 ms
92,312 KB
testcase_04 AC 478 ms
93,592 KB
testcase_05 AC 63 ms
71,040 KB
testcase_06 AC 60 ms
70,376 KB
testcase_07 AC 60 ms
69,436 KB
testcase_08 AC 60 ms
68,904 KB
testcase_09 AC 59 ms
69,052 KB
testcase_10 AC 60 ms
69,708 KB
testcase_11 AC 62 ms
68,960 KB
testcase_12 AC 77 ms
79,724 KB
testcase_13 AC 80 ms
80,176 KB
testcase_14 AC 83 ms
81,440 KB
testcase_15 AC 203 ms
92,496 KB
testcase_16 AC 104 ms
88,620 KB
testcase_17 AC 144 ms
92,964 KB
testcase_18 AC 143 ms
92,068 KB
testcase_19 AC 224 ms
92,644 KB
testcase_20 AC 337 ms
92,692 KB
testcase_21 AC 359 ms
93,176 KB
testcase_22 AC 479 ms
93,600 KB
testcase_23 AC 482 ms
93,340 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())

def query(X):
    X = list(X)
    X.sort()
    print('?', len(X), flush=True)
    print(*X, flush=True)

A = set(range(1, n+1))
NG = set()
for i in range(1, n+1):
    A.remove(i)
    query(A)
    ans = int(input())
    if ans == 1:
        NG.add(i)
    A.add(i)
ANS = []
for i in range(1, n+1):
    if i not in NG:
        ANS.append(i)
print('!', len(ANS), flush=True)
print(*ANS)
0