結果

問題 No.934 Explosive energy drink
ユーザー otsuri_114514otsuri_114514
提出日時 2019-11-29 22:41:44
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 726 bytes
コンパイル時間 305 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 27,864 KB
平均クエリ数 709.58
最終ジャッジ日時 2024-07-16 18:41:54
合計ジャッジ時間 10,613 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 53 ms
27,208 KB
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 AC 810 ms
27,608 KB
testcase_05 AC 51 ms
27,352 KB
testcase_06 AC 50 ms
27,224 KB
testcase_07 AC 49 ms
26,968 KB
testcase_08 AC 50 ms
27,224 KB
testcase_09 AC 51 ms
26,968 KB
testcase_10 WA -
testcase_11 AC 52 ms
27,480 KB
testcase_12 AC 54 ms
27,224 KB
testcase_13 AC 62 ms
27,224 KB
testcase_14 AC 61 ms
27,352 KB
testcase_15 AC 255 ms
27,352 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 AC 157 ms
27,480 KB
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#import pysnooper
#import numpy
#import os,re,sys,operator
from collections import Counter,deque
#from operator import itemgetter
from itertools import accumulate#,combinations,groupby,combinations_with_replacement,permutations
from sys import stdin,setrecursionlimit
#from bisect import bisect_left,bisect_right
#from copy import deepcopy
#import heapq
#import math
#import string
#from time import time
#from functools import lru_cache
setrecursionlimit(10**6)
input=stdin.readline

n=int(input().rstrip())
a=list(range(1,n+1))
res=set()
for i in range(n):
    print("?",n-1,flush=True)
    print(*a[:i],*a[i+1:],flush=True)
    ans=int(input().rstrip())
    if not ans:
        res.add(a[i])
print("!",len(res))
print(*res)
0