結果
問題 |
No.934 Explosive energy drink
|
ユーザー |
![]() |
提出日時 | 2021-03-15 21:25:13 |
言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
結果 |
WA
|
実行時間 | - |
コード長 | 224 bytes |
コンパイル時間 | 229 ms |
コンパイル使用メモリ | 12,544 KB |
実行使用メモリ | 27,864 KB |
平均クエリ数 | 709.54 |
最終ジャッジ日時 | 2024-07-17 10:58:14 |
合計ジャッジ時間 | 11,407 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | WA * 24 |
ソースコード
N = int(input()) ans = [] for i in range(N): print("? {}".format(N - 1)) print(*[1 + j for j in range(N) if i != j]) F = int(input()) if F: ans.append(i + 1) print("! {}".format(len(ans))) print(*ans)