結果

問題 No.934 Explosive energy drink
ユーザー tamatotamato
提出日時 2020-01-31 17:03:58
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 411 ms / 2,000 ms
コード長 706 bytes
コンパイル時間 137 ms
コンパイル使用メモリ 82,268 KB
実行使用メモリ 93,480 KB
平均クエリ数 709.08
最終ジャッジ日時 2024-07-16 19:23:22
合計ジャッジ時間 5,298 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 58 ms
69,008 KB
testcase_01 AC 272 ms
93,108 KB
testcase_02 AC 54 ms
69,052 KB
testcase_03 AC 181 ms
93,212 KB
testcase_04 AC 411 ms
93,268 KB
testcase_05 AC 56 ms
69,508 KB
testcase_06 AC 53 ms
68,772 KB
testcase_07 AC 54 ms
69,788 KB
testcase_08 AC 56 ms
68,752 KB
testcase_09 AC 56 ms
70,524 KB
testcase_10 AC 57 ms
68,752 KB
testcase_11 AC 58 ms
70,416 KB
testcase_12 AC 69 ms
80,220 KB
testcase_13 AC 76 ms
82,056 KB
testcase_14 AC 77 ms
83,812 KB
testcase_15 AC 170 ms
92,696 KB
testcase_16 AC 87 ms
87,540 KB
testcase_17 AC 111 ms
92,980 KB
testcase_18 AC 116 ms
92,376 KB
testcase_19 AC 152 ms
92,648 KB
testcase_20 AC 218 ms
93,296 KB
testcase_21 AC 212 ms
93,296 KB
testcase_22 AC 288 ms
93,148 KB
testcase_23 AC 281 ms
93,480 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] = 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