結果
| 問題 | No.934 Explosive energy drink | 
| コンテスト | |
| ユーザー |  | 
| 提出日時 | 2019-11-29 21:50:40 | 
| 言語 | PyPy3 (7.3.15) | 
| 結果 | 
                                TLE
                                 
                             | 
| 実行時間 | - | 
| コード長 | 203 bytes | 
| コンパイル時間 | 903 ms | 
| コンパイル使用メモリ | 82,320 KB | 
| 実行使用メモリ | 84,880 KB | 
| 最終ジャッジ日時 | 2024-07-16 18:17:02 | 
| 合計ジャッジ時間 | 7,665 ms | 
| ジャッジサーバーID (参考情報) | judge5 / judge3 | 
(要ログイン)
| ファイルパターン | 結果 | 
|---|---|
| other | TLE * 1 -- * 23 | 
ソースコード
N = int(input())
ans = []
for i in range(N):
  q = [j+1 for j in range(N) if i != j]
  print('? ' + ' '.join(map(str, q)))
  if input() == '0':
    ans.append(i)
print('! ' + str(len(ans)))
print(*ans)
            
            
            
        