結果

問題 No.934 Explosive energy drink
ユーザー rlangevinrlangevin
提出日時 2023-01-16 00:27:43
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 502 ms / 2,000 ms
コード長 262 bytes
コンパイル時間 180 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 93,528 KB
平均クエリ数 709.58
最終ジャッジ日時 2024-06-09 10:25:11
合計ジャッジ時間 6,957 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 65 ms
67,968 KB
testcase_01 AC 470 ms
93,400 KB
testcase_02 AC 66 ms
68,568 KB
testcase_03 AC 269 ms
91,992 KB
testcase_04 AC 502 ms
93,144 KB
testcase_05 AC 57 ms
68,824 KB
testcase_06 AC 61 ms
68,312 KB
testcase_07 AC 62 ms
68,184 KB
testcase_08 AC 62 ms
68,312 KB
testcase_09 AC 62 ms
68,312 KB
testcase_10 AC 64 ms
68,440 KB
testcase_11 AC 65 ms
68,952 KB
testcase_12 AC 80 ms
78,808 KB
testcase_13 AC 78 ms
79,576 KB
testcase_14 AC 79 ms
80,344 KB
testcase_15 AC 193 ms
93,144 KB
testcase_16 AC 102 ms
87,512 KB
testcase_17 AC 139 ms
92,760 KB
testcase_18 AC 145 ms
92,072 KB
testcase_19 AC 220 ms
92,632 KB
testcase_20 AC 322 ms
92,792 KB
testcase_21 AC 348 ms
92,912 KB
testcase_22 AC 458 ms
92,888 KB
testcase_23 AC 465 ms
93,528 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