結果

問題 No.934 Explosive energy drink
ユーザー mkawa2mkawa2
提出日時 2019-11-30 00:18:38
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
RE  
実行時間 -
コード長 1,007 bytes
コンパイル時間 95 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 27,864 KB
平均クエリ数 454.42
最終ジャッジ日時 2024-07-16 18:54:39
合計ジャッジ時間 5,571 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 51 ms
27,336 KB
testcase_01 AC 65 ms
27,096 KB
testcase_02 AC 50 ms
27,352 KB
testcase_03 AC 59 ms
27,480 KB
testcase_04 RE -
testcase_05 RE -
testcase_06 AC 51 ms
27,352 KB
testcase_07 AC 49 ms
27,480 KB
testcase_08 AC 52 ms
27,608 KB
testcase_09 AC 51 ms
27,344 KB
testcase_10 AC 51 ms
27,480 KB
testcase_11 AC 52 ms
27,480 KB
testcase_12 AC 55 ms
26,968 KB
testcase_13 AC 75 ms
27,480 KB
testcase_14 AC 113 ms
27,224 KB
testcase_15 RE -
testcase_16 AC 53 ms
27,480 KB
testcase_17 AC 55 ms
27,480 KB
testcase_18 AC 169 ms
27,352 KB
testcase_19 AC 60 ms
27,352 KB
testcase_20 AC 244 ms
27,608 KB
testcase_21 AC 70 ms
27,344 KB
testcase_22 AC 116 ms
27,224 KB
testcase_23 AC 83 ms
27,096 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

sys.setrecursionlimit(10 ** 6)
int1 = lambda x: int(x) - 1
p2D = lambda x: print(*x, sep="\n")
def MI(): return map(int, sys.stdin.readline().split())
def LI(): return list(map(int, sys.stdin.readline().split()))
def LLI(rows_number): return [LI() for _ in range(rows_number)]

n=int(input())
hit=[]

def q(x,y):
    lst=list(range(x,y+1))+hit
    lst.sort()
    print("?",len(lst))
    print(*lst)

def main():
    b,e=1,n
    while e>2:
        l,r=1,e
        while l+1<r:
            m=(l+r)//2
            q(b,m)
            if input()=="0":
                l=m
            else:
                e=r=m
        if e==2:break
        hit.append(r)
        e-=1
    q(1,1)
    if input()=="1":
        q(2,2)
        if input()=="1":
            1
        else:
            hit.append(1)
    else:
        q(2,2)
        if input()=="0":
            hit.append(1)
            hit.append(2)
        else:
            hit.append(2)

    hit.sort()
    print("!",len(hit))
    print(*hit)

main()
0