結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 53 ms
27,496 KB
testcase_01 AC 451 ms
27,352 KB
testcase_02 AC 52 ms
27,480 KB
testcase_03 AC 237 ms
27,224 KB
testcase_04 AC 802 ms
27,352 KB
testcase_05 RE -
testcase_06 AC 52 ms
27,352 KB
testcase_07 AC 51 ms
27,352 KB
testcase_08 AC 51 ms
27,096 KB
testcase_09 AC 50 ms
27,096 KB
testcase_10 AC 51 ms
27,352 KB
testcase_11 AC 51 ms
27,480 KB
testcase_12 AC 53 ms
26,968 KB
testcase_13 AC 60 ms
27,352 KB
testcase_14 AC 61 ms
26,968 KB
testcase_15 AC 250 ms
27,096 KB
testcase_16 AC 75 ms
27,224 KB
testcase_17 AC 105 ms
27,224 KB
testcase_18 AC 116 ms
27,480 KB
testcase_19 AC 188 ms
26,968 KB
testcase_20 AC 320 ms
26,968 KB
testcase_21 AC 321 ms
27,224 KB
testcase_22 AC 448 ms
27,224 KB
testcase_23 AC 456 ms
27,096 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
    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