結果
問題 |
No.934 Explosive energy drink
|
ユーザー |
![]() |
提出日時 | 2020-03-26 22:01:05 |
言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
結果 |
AC
|
実行時間 | 812 ms / 2,000 ms |
コード長 | 226 bytes |
コンパイル時間 | 298 ms |
コンパイル使用メモリ | 12,416 KB |
実行使用メモリ | 27,608 KB |
平均クエリ数 | 709.58 |
最終ジャッジ日時 | 2024-07-17 03:22:30 |
合計ジャッジ時間 | 8,358 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 24 |
ソースコード
N = int(input()) res = [] A = list(range(1, N + 1)) for i in range(N): print('?', N - 1 ) print(*(A[:i] + A[i + 1:])) ans = int(input()) if not ans: res.append(i + 1) print('!', len(res)) print(*res)