結果
| 問題 | No.934 Explosive energy drink | 
| コンテスト | |
| ユーザー |  | 
| 提出日時 | 2019-11-29 21:51:42 | 
| 言語 | PyPy3 (7.3.15) | 
| 結果 | 
                                TLE
                                 
                             | 
| 実行時間 | - | 
| コード長 | 255 bytes | 
| コンパイル時間 | 303 ms | 
| コンパイル使用メモリ | 82,048 KB | 
| 実行使用メモリ | 81,936 KB | 
| 最終ジャッジ日時 | 2024-07-16 18:17:36 | 
| 合計ジャッジ時間 | 6,867 ms | 
| ジャッジサーバーID (参考情報) | judge4 / judge3 | 
(要ログイン)
| ファイルパターン | 結果 | 
|---|---|
| other | TLE * 1 -- * 23 | 
ソースコード
import sys
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)))
  sys.stdout.flush()
  if input() == '0':
    ans.append(i)
print('! ' + str(len(ans)))
print(*ans)
sys.stdout.flush()
            
            
            
        