結果

問題 No.934 Explosive energy drink
ユーザー stngstng
提出日時 2022-08-15 16:06:22
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 500 ms / 2,000 ms
コード長 590 bytes
コンパイル時間 536 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 93,880 KB
平均クエリ数 709.25
最終ジャッジ日時 2024-10-02 05:04:05
合計ジャッジ時間 6,338 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 59 ms
68,448 KB
testcase_01 AC 323 ms
93,880 KB
testcase_02 AC 58 ms
68,696 KB
testcase_03 AC 196 ms
93,052 KB
testcase_04 AC 500 ms
93,588 KB
testcase_05 AC 58 ms
69,464 KB
testcase_06 AC 55 ms
68,696 KB
testcase_07 AC 55 ms
68,824 KB
testcase_08 AC 56 ms
68,952 KB
testcase_09 AC 58 ms
68,616 KB
testcase_10 AC 57 ms
68,952 KB
testcase_11 AC 60 ms
69,848 KB
testcase_12 AC 73 ms
79,064 KB
testcase_13 AC 77 ms
80,672 KB
testcase_14 AC 81 ms
81,752 KB
testcase_15 AC 207 ms
93,644 KB
testcase_16 AC 96 ms
86,464 KB
testcase_17 AC 125 ms
92,248 KB
testcase_18 AC 132 ms
93,272 KB
testcase_19 AC 181 ms
93,144 KB
testcase_20 AC 239 ms
93,272 KB
testcase_21 AC 242 ms
93,144 KB
testcase_22 AC 298 ms
93,144 KB
testcase_23 AC 303 ms
92,740 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
val = n-1
kaku = []
for i in range(n):
    if val < 2:
        if i % 2 == 0:
            kaku.append(n-(i//2))
        else:
            kaku.append(i//2+1)
        break
    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 = 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