結果

問題 No.934 Explosive energy drink
ユーザー mkawa2mkawa2
提出日時 2021-03-30 11:37:19
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
RE  
実行時間 -
コード長 446 bytes
コンパイル時間 114 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 27,608 KB
平均クエリ数 472.75
最終ジャッジ日時 2024-07-17 11:07:35
合計ジャッジ時間 5,526 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 61 ms
27,208 KB
testcase_01 AC 67 ms
27,480 KB
testcase_02 AC 56 ms
27,376 KB
testcase_03 AC 65 ms
27,208 KB
testcase_04 RE -
testcase_05 AC 53 ms
26,840 KB
testcase_06 AC 54 ms
27,224 KB
testcase_07 AC 54 ms
27,224 KB
testcase_08 AC 54 ms
27,352 KB
testcase_09 AC 52 ms
27,224 KB
testcase_10 AC 55 ms
27,480 KB
testcase_11 AC 56 ms
27,352 KB
testcase_12 AC 63 ms
27,096 KB
testcase_13 AC 84 ms
26,968 KB
testcase_14 AC 125 ms
26,968 KB
testcase_15 RE -
testcase_16 AC 55 ms
26,712 KB
testcase_17 AC 62 ms
27,128 KB
testcase_18 AC 198 ms
27,224 KB
testcase_19 AC 64 ms
26,840 KB
testcase_20 AC 279 ms
27,352 KB
testcase_21 AC 76 ms
27,608 KB
testcase_22 AC 130 ms
27,352 KB
testcase_23 AC 86 ms
26,840 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def ask(aa):
    if len(aa)==1:return 0
    if len(aa)==n:return 1
    print("?", len(aa), flush=True)
    print(*aa, flush=True)
    return int(input())

n = int(input())
ans = []
r = n
while 1:
    l = 0
    while l+1 < r:
        m = (l+r)//2
        aa = list(range(1, m+1))+ans[::-1]
        if ask(aa): r = m
        else: l = m
    ans.append(r)
    if ask(ans[::-1]): break

print("!", len(ans), flush=True)
print(*ans[::-1], flush=True)
0