結果

問題 No.934 Explosive energy drink
ユーザー FromBooskaFromBooska
提出日時 2023-04-04 13:02:11
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 491 ms / 2,000 ms
コード長 681 bytes
コンパイル時間 290 ms
コンパイル使用メモリ 82,688 KB
実行使用メモリ 93,960 KB
平均クエリ数 709.58
最終ジャッジ日時 2024-10-01 06:06:17
合計ジャッジ時間 7,152 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 64 ms
68,320 KB
testcase_01 AC 488 ms
93,168 KB
testcase_02 AC 61 ms
68,696 KB
testcase_03 AC 278 ms
92,388 KB
testcase_04 AC 491 ms
93,152 KB
testcase_05 AC 64 ms
69,208 KB
testcase_06 AC 61 ms
68,696 KB
testcase_07 AC 62 ms
68,952 KB
testcase_08 AC 61 ms
68,824 KB
testcase_09 AC 62 ms
68,432 KB
testcase_10 AC 62 ms
68,440 KB
testcase_11 AC 63 ms
68,952 KB
testcase_12 AC 79 ms
79,960 KB
testcase_13 AC 80 ms
79,960 KB
testcase_14 AC 85 ms
82,552 KB
testcase_15 AC 188 ms
92,084 KB
testcase_16 AC 103 ms
89,432 KB
testcase_17 AC 138 ms
92,692 KB
testcase_18 AC 139 ms
92,248 KB
testcase_19 AC 220 ms
92,564 KB
testcase_20 AC 307 ms
93,136 KB
testcase_21 AC 325 ms
93,220 KB
testcase_22 AC 438 ms
93,960 KB
testcase_23 AC 449 ms
93,748 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# Kの数と、K種がどれか、という2つのわからない要因がある
# 1つをまず確定できないかと思ったが、それは難しそう
# それなら、何を含まないかを確定させていくのでどうか
# たとえばN=5なら、まず1234でチェック、次に1235として、どれを含まないかチェック
# これを一通りやればどれを含まなくてよいかわかる

N = int(input())
ans_list = []
for i in range(1, N+1):
    print('?', N-1)
    LIST = [a for a in range(1, N+1) if a != i]
    print(*LIST)
    response = int(input())
    if response == 0:
        ans_list.append(i)

print('!', len(ans_list))
print(*ans_list)
0