結果

問題 No.934 Explosive energy drink
ユーザー H20H20
提出日時 2022-10-14 13:13:41
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 477 ms / 2,000 ms
コード長 269 bytes
コンパイル時間 381 ms
コンパイル使用メモリ 82,232 KB
実行使用メモリ 94,068 KB
平均クエリ数 709.58
最終ジャッジ日時 2024-06-26 12:36:23
合計ジャッジ時間 6,664 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 62 ms
69,220 KB
testcase_01 AC 463 ms
93,412 KB
testcase_02 AC 55 ms
69,376 KB
testcase_03 AC 274 ms
92,984 KB
testcase_04 AC 462 ms
94,068 KB
testcase_05 AC 56 ms
69,668 KB
testcase_06 AC 54 ms
69,168 KB
testcase_07 AC 54 ms
70,040 KB
testcase_08 AC 56 ms
70,460 KB
testcase_09 AC 60 ms
69,612 KB
testcase_10 AC 61 ms
69,864 KB
testcase_11 AC 63 ms
69,604 KB
testcase_12 AC 75 ms
79,000 KB
testcase_13 AC 75 ms
81,172 KB
testcase_14 AC 77 ms
81,536 KB
testcase_15 AC 194 ms
92,580 KB
testcase_16 AC 101 ms
88,464 KB
testcase_17 AC 139 ms
92,060 KB
testcase_18 AC 151 ms
92,448 KB
testcase_19 AC 217 ms
92,508 KB
testcase_20 AC 326 ms
93,252 KB
testcase_21 AC 357 ms
93,156 KB
testcase_22 AC 472 ms
93,668 KB
testcase_23 AC 477 ms
93,316 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
ALL = set(range(1,N+1))
ANS = []
for i in range(1,N+1):
    ALL.remove(i)
    print('? ' + str(N-1),flush=True)
    print(*sorted(list(ALL)),flush=True)
    if input() == '0':
        ANS.append(i)
    ALL.add(i)
print('! ' + str(len(ANS)))
print(*ANS)
0