結果

問題 No.934 Explosive energy drink
ユーザー stngstng
提出日時 2022-08-15 15:33:21
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 453 bytes
コンパイル時間 317 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 94,040 KB
平均クエリ数 709.25
最終ジャッジ日時 2024-10-02 04:00:16
合計ジャッジ時間 7,063 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 RE -
testcase_01 AC 318 ms
94,040 KB
testcase_02 AC 60 ms
68,440 KB
testcase_03 AC 202 ms
92,888 KB
testcase_04 AC 470 ms
93,828 KB
testcase_05 AC 65 ms
68,312 KB
testcase_06 RE -
testcase_07 RE -
testcase_08 RE -
testcase_09 AC 61 ms
68,568 KB
testcase_10 AC 60 ms
68,696 KB
testcase_11 AC 62 ms
68,808 KB
testcase_12 AC 76 ms
78,936 KB
testcase_13 AC 91 ms
80,088 KB
testcase_14 AC 95 ms
81,136 KB
testcase_15 AC 230 ms
93,016 KB
testcase_16 AC 111 ms
86,532 KB
testcase_17 AC 145 ms
92,760 KB
testcase_18 AC 154 ms
92,760 KB
testcase_19 AC 186 ms
92,760 KB
testcase_20 AC 245 ms
92,912 KB
testcase_21 AC 240 ms
93,300 KB
testcase_22 AC 304 ms
93,784 KB
testcase_23 AC 301 ms
93,016 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
val = n-1
kaku = []
for i in range(n):
    print("?",val,flush=True)
    a = kaku[:]
    for j in range(val-len(kaku)):
        a.append(j+i//2+i%2+1)
    a.sort()
    print(*a,flush=True)
    ans = int(input())
    if ans == 1:#不要
        val -= 1
    else:
        if i % 2 == 0:
            kaku.append(n-(i//2))
        else:
            kaku.append(i//2+1)
a = kaku[:]
a.sort()
print("!",len(a),flush=True)
print(*a,flush=True)
0