結果
| 問題 |
No.934 Explosive energy drink
|
| コンテスト | |
| ユーザー |
Salmonize
|
| 提出日時 | 2020-03-10 13:53:26 |
| 言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 189 bytes |
| コンパイル時間 | 144 ms |
| コンパイル使用メモリ | 12,672 KB |
| 実行使用メモリ | 27,736 KB |
| 平均クエリ数 | 709.58 |
| 最終ジャッジ日時 | 2024-07-16 20:36:17 |
| 合計ジャッジ時間 | 11,332 ms |
|
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | WA * 24 |
ソースコード
n = int(input())
l = list()
for i in range(1,n+1):
print('?', n-1)
print(*[j for j in range(1,n+1) if j != i])
f = int(input())
if f: l.append(i)
print('!', len(l))
print(l)
Salmonize