結果

問題 No.934 Explosive energy drink
ユーザー tamatotamato
提出日時 2020-01-31 17:02:46
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 704 bytes
コンパイル時間 214 ms
コンパイル使用メモリ 82,192 KB
実行使用メモリ 93,424 KB
平均クエリ数 708.92
最終ジャッジ日時 2024-07-16 19:22:59
合計ジャッジ時間 6,017 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 RE -
testcase_01 AC 291 ms
93,308 KB
testcase_02 AC 58 ms
69,044 KB
testcase_03 AC 186 ms
92,736 KB
testcase_04 AC 436 ms
93,424 KB
testcase_05 AC 61 ms
69,436 KB
testcase_06 RE -
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 61 ms
68,960 KB
testcase_10 AC 61 ms
68,796 KB
testcase_11 AC 64 ms
70,208 KB
testcase_12 AC 74 ms
80,356 KB
testcase_13 AC 80 ms
81,548 KB
testcase_14 AC 84 ms
84,060 KB
testcase_15 AC 186 ms
93,108 KB
testcase_16 AC 94 ms
86,936 KB
testcase_17 AC 125 ms
92,464 KB
testcase_18 AC 129 ms
92,600 KB
testcase_19 AC 171 ms
93,060 KB
testcase_20 AC 230 ms
93,392 KB
testcase_21 AC 227 ms
92,852 KB
testcase_22 AC 291 ms
93,260 KB
testcase_23 AC 295 ms
92,788 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def main():
    import sys
    input = sys.stdin.readline

    def ask(A):
        print('?', len(A))
        print(*A)
        sys.stdout.flush()

    N = int(input())
    need = [1] * N
    for i in range(N):
        q = []
        need[i] = 0
        for j in range(N):
            if need[j]:
                q.append(j+1)
        if len(q) == 1:
            need[i] = 1
            need[q[0]] = 1
            continue
        ask(q)
        e = int(input())
        if not e:
            need[i] = 1
    ans = []
    for i in range(N):
        if need[i]:
            ans.append(i+1)
    print('!', len(ans))
    print(*ans)
    sys.stdout.flush()
    exit()


if __name__ == '__main__':
    main()
0