結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 RE -
testcase_01 AC 298 ms
93,040 KB
testcase_02 AC 62 ms
68,996 KB
testcase_03 AC 192 ms
93,104 KB
testcase_04 AC 439 ms
93,656 KB
testcase_05 AC 62 ms
69,484 KB
testcase_06 RE -
testcase_07 RE -
testcase_08 RE -
testcase_09 AC 62 ms
70,028 KB
testcase_10 AC 65 ms
69,468 KB
testcase_11 AC 63 ms
70,016 KB
testcase_12 AC 76 ms
79,764 KB
testcase_13 AC 79 ms
80,492 KB
testcase_14 AC 83 ms
82,948 KB
testcase_15 AC 188 ms
93,208 KB
testcase_16 AC 93 ms
86,348 KB
testcase_17 AC 122 ms
93,140 KB
testcase_18 AC 126 ms
93,060 KB
testcase_19 AC 161 ms
92,852 KB
testcase_20 AC 229 ms
92,876 KB
testcase_21 AC 229 ms
93,244 KB
testcase_22 AC 290 ms
92,884 KB
testcase_23 AC 307 ms
93,016 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)
        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