結果

問題 No.934 Explosive energy drink
ユーザー convexineqconvexineq
提出日時 2019-11-29 22:09:54
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 758 ms / 2,000 ms
コード長 775 bytes
コンパイル時間 81 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 27,608 KB
平均クエリ数 709.42
最終ジャッジ日時 2024-07-16 18:26:07
合計ジャッジ時間 6,422 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 54 ms
27,464 KB
testcase_01 AC 426 ms
27,480 KB
testcase_02 AC 47 ms
27,224 KB
testcase_03 AC 227 ms
27,352 KB
testcase_04 AC 758 ms
27,224 KB
testcase_05 AC 47 ms
27,352 KB
testcase_06 AC 47 ms
26,840 KB
testcase_07 AC 49 ms
27,480 KB
testcase_08 AC 47 ms
26,968 KB
testcase_09 AC 48 ms
27,480 KB
testcase_10 AC 47 ms
26,968 KB
testcase_11 AC 46 ms
27,352 KB
testcase_12 AC 51 ms
27,352 KB
testcase_13 AC 52 ms
27,480 KB
testcase_14 AC 55 ms
27,608 KB
testcase_15 AC 240 ms
27,352 KB
testcase_16 AC 68 ms
27,288 KB
testcase_17 AC 99 ms
27,360 KB
testcase_18 AC 107 ms
27,480 KB
testcase_19 AC 177 ms
27,224 KB
testcase_20 AC 322 ms
27,480 KB
testcase_21 AC 301 ms
27,608 KB
testcase_22 AC 453 ms
27,608 KB
testcase_23 AC 424 ms
27,224 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# coding: utf-8
# Your code here!
import sys
sys.setrecursionlimit(10**6)
readline = sys.stdin.readline
 
#h,w,k = [int(i) for i in readline().split()]
#n = int(input())
#ab = [[int(i) for i in readline().split()] for _ in range(n)]


n = int(input())

ans1 = list(range(1,n+1))
ans2 = []

for i in range(n,0,-1):
    if i == 1 and len(ans2) == 1:
        ans2.append(i)
        ans1.pop()
        break
    if i == 2 and len(ans2) == 0:
        ans2 = [2,1]
        ans1 = []
        break
    ans1.pop()
    print("? {}".format(len(ans1) + len(ans2)))
    print(*sorted(ans1 + list(reversed(ans2))))
    sys.stdout.flush()
    if input() == "0":
        ans2.append(i)



print("! {}".format(len(ans1) + len(ans2)))
print(*(ans1 + list(reversed(ans2))))
sys.stdout.flush()
0