結果

問題 No.934 Explosive energy drink
ユーザー rlangevinrlangevin
提出日時 2023-01-16 00:27:43
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 558 ms / 2,000 ms
コード長 262 bytes
コンパイル時間 419 ms
コンパイル使用メモリ 81,664 KB
実行使用メモリ 93,656 KB
平均クエリ数 709.58
最終ジャッジ日時 2024-12-29 17:50:55
合計ジャッジ時間 8,141 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 74 ms
67,680 KB
testcase_01 AC 544 ms
93,096 KB
testcase_02 AC 72 ms
68,696 KB
testcase_03 AC 308 ms
92,248 KB
testcase_04 AC 555 ms
93,272 KB
testcase_05 AC 73 ms
69,208 KB
testcase_06 AC 70 ms
68,312 KB
testcase_07 AC 72 ms
68,568 KB
testcase_08 AC 70 ms
68,952 KB
testcase_09 AC 73 ms
68,312 KB
testcase_10 AC 71 ms
68,568 KB
testcase_11 AC 74 ms
69,208 KB
testcase_12 AC 93 ms
78,936 KB
testcase_13 AC 95 ms
79,064 KB
testcase_14 AC 97 ms
79,320 KB
testcase_15 AC 231 ms
92,144 KB
testcase_16 AC 125 ms
88,024 KB
testcase_17 AC 170 ms
91,992 KB
testcase_18 AC 169 ms
92,120 KB
testcase_19 AC 268 ms
92,888 KB
testcase_20 AC 391 ms
92,376 KB
testcase_21 AC 414 ms
92,248 KB
testcase_22 AC 553 ms
92,760 KB
testcase_23 AC 558 ms
93,656 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

N = int(input())
ans = []
L = list(range(1, N + 1))
for i in range(N):
    print("?", N - 1)
    print(*(L[:i] + L[i + 1:]))
    sys.stdout.flush()
    if not int(input()):
        ans.append(i + 1)
print("!", len(ans))
print(*ans)
sys.stdout.flush()
0