結果
| 問題 | No.934 Explosive energy drink | 
| コンテスト | |
| ユーザー |  vwxyz | 
| 提出日時 | 2023-12-26 08:08:29 | 
| 言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) | 
| 結果 | 
                                RE
                                 
                             | 
| 実行時間 | - | 
| コード長 | 184 bytes | 
| コンパイル時間 | 194 ms | 
| コンパイル使用メモリ | 12,416 KB | 
| 実行使用メモリ | 27,896 KB | 
| 平均クエリ数 | 2.00 | 
| 最終ジャッジ日時 | 2024-09-27 15:03:27 | 
| 合計ジャッジ時間 | 6,654 ms | 
| ジャッジサーバーID (参考情報) | judge2 / judge3 | 
(要ログイン)
| ファイルパターン | 結果 | 
|---|---|
| other | RE * 24 | 
ソースコード
N=int(input())
B=[]
for b in range(N):
    A=[a+1 for a in range(N) if a!=b]
    print("?",N+1)
    print(*A)
    if not int(input()):
        B.append(b+1)
print("!",len(B))
print(*B)
            
            
            
        