結果
| 問題 | No.934 Explosive energy drink |
| コンテスト | |
| ユーザー |
Salmonize
|
| 提出日時 | 2020-03-10 14:00:14 |
| 言語 | Python3 (3.14.3 + numpy 2.4.4 + scipy 1.17.1) |
| 結果 |
AC
|
| 実行時間 | 548 ms / 2,000 ms |
| コード長 | 202 bytes |
| 記録 | |
| コンパイル時間 | 327 ms |
| コンパイル使用メモリ | 20,828 KB |
| 実行使用メモリ | 34,440 KB |
| 平均クエリ数 | 709.58 |
| 最終ジャッジ日時 | 2026-03-31 09:47:20 |
| 合計ジャッジ時間 | 7,555 ms |
|
ジャッジサーバーID (参考情報) |
judge3_1 / judge2_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 24 |
ソースコード
n = int(input())
l = list()
f = [i+1 for i in range(n)]
for i in range(1,n+1):
print('?', n-1)
print(*f[:i-1], *f[i:])
g = int(input())
if not g: l.append(i)
print('!', len(l))
print(*l)
Salmonize