結果

問題 No.934 Explosive energy drink
ユーザー titiatitia
提出日時 2024-11-06 04:17:23
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
RE  
実行時間 -
コード長 519 bytes
コンパイル時間 253 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 27,992 KB
平均クエリ数 1315.42
最終ジャッジ日時 2024-11-06 04:17:33
合計ジャッジ時間 10,342 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 56 ms
27,336 KB
testcase_01 RE -
testcase_02 AC 50 ms
27,096 KB
testcase_03 RE -
testcase_04 RE -
testcase_05 AC 54 ms
27,352 KB
testcase_06 AC 49 ms
27,224 KB
testcase_07 AC 49 ms
27,480 KB
testcase_08 AC 52 ms
27,224 KB
testcase_09 AC 52 ms
27,352 KB
testcase_10 AC 51 ms
27,480 KB
testcase_11 AC 55 ms
27,096 KB
testcase_12 AC 92 ms
27,224 KB
testcase_13 AC 142 ms
27,224 KB
testcase_14 AC 63 ms
27,736 KB
testcase_15 AC 266 ms
27,608 KB
testcase_16 AC 101 ms
27,224 KB
testcase_17 RE -
testcase_18 RE -
testcase_19 AC 322 ms
27,224 KB
testcase_20 RE -
testcase_21 RE -
testcase_22 RE -
testcase_23 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

N=int(input())

LIST=list(range(1,N+1))

while True:
    for i in range(len(LIST)):
        LIST2=LIST[:i]+LIST[i+1:]

        print("?",len(LIST2),flush=True)
        print(*LIST2,flush=True)
        ans=int(input())

        if ans==1:
            LIST=LIST2
            break
        else:
            continue

    else:
        print("!",len(LIST),flush=True)
        print(*LIST,flush=True)
        break

    if len(LIST)==2:
        print("!",len(LIST),flush=True)
        print(*LIST,flush=True)
        break
0