結果

問題 No.934 Explosive energy drink
ユーザー stngstng
提出日時 2022-08-15 15:34:30
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 460 bytes
コンパイル時間 133 ms
コンパイル使用メモリ 82,416 KB
実行使用メモリ 94,216 KB
平均クエリ数 709.25
最終ジャッジ日時 2024-04-10 02:41:09
合計ジャッジ時間 6,436 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 RE -
testcase_01 AC 313 ms
94,216 KB
testcase_02 AC 55 ms
69,068 KB
testcase_03 AC 189 ms
92,796 KB
testcase_04 AC 483 ms
93,860 KB
testcase_05 AC 57 ms
68,872 KB
testcase_06 RE -
testcase_07 RE -
testcase_08 RE -
testcase_09 AC 55 ms
69,748 KB
testcase_10 AC 56 ms
70,012 KB
testcase_11 AC 59 ms
70,396 KB
testcase_12 AC 70 ms
80,920 KB
testcase_13 AC 78 ms
82,256 KB
testcase_14 AC 76 ms
81,740 KB
testcase_15 AC 199 ms
93,524 KB
testcase_16 AC 93 ms
87,956 KB
testcase_17 AC 120 ms
92,492 KB
testcase_18 AC 129 ms
93,108 KB
testcase_19 AC 169 ms
93,052 KB
testcase_20 AC 226 ms
93,352 KB
testcase_21 AC 238 ms
93,516 KB
testcase_22 AC 292 ms
93,304 KB
testcase_23 AC 282 ms
93,568 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
val = n-1
kaku = []
for i in range(n):
    print("?",val,flush=True)
    a = kaku[:]
    for j in range(val-len(kaku)):
        a.append(j+i//2+i%2+1)
    a.sort()
    print(*a,flush=True)
    ans = int(input())
    if ans == 1:#不要
        val -= 1
    else:
        if i % 2 == 0:
            kaku.append(n-(i//2))
        else:
            kaku.append(i//2+1)
a = kaku[:]
a.sort()
print("!",len(a),flush=True)
print(*a,flush=True)
exit()
0