結果

問題 No.934 Explosive energy drink
ユーザー aaaaaaaaaa2230aaaaaaaaaa2230
提出日時 2022-05-07 22:39:51
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 426 ms / 2,000 ms
コード長 242 bytes
コンパイル時間 209 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 93,376 KB
平均クエリ数 709.58
最終ジャッジ日時 2024-07-07 04:42:22
合計ジャッジ時間 6,889 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 55 ms
69,500 KB
testcase_01 AC 426 ms
93,376 KB
testcase_02 AC 51 ms
69,604 KB
testcase_03 AC 249 ms
92,472 KB
testcase_04 AC 397 ms
93,244 KB
testcase_05 AC 54 ms
69,488 KB
testcase_06 AC 50 ms
69,480 KB
testcase_07 AC 48 ms
68,944 KB
testcase_08 AC 50 ms
69,608 KB
testcase_09 AC 49 ms
69,096 KB
testcase_10 AC 51 ms
69,344 KB
testcase_11 AC 50 ms
69,180 KB
testcase_12 AC 63 ms
81,776 KB
testcase_13 AC 75 ms
81,412 KB
testcase_14 AC 78 ms
83,004 KB
testcase_15 AC 165 ms
92,232 KB
testcase_16 AC 83 ms
89,816 KB
testcase_17 AC 112 ms
92,144 KB
testcase_18 AC 113 ms
92,768 KB
testcase_19 AC 189 ms
92,864 KB
testcase_20 AC 277 ms
93,116 KB
testcase_21 AC 285 ms
92,928 KB
testcase_22 AC 384 ms
93,012 KB
testcase_23 AC 399 ms
93,340 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

n = int(input())

ans = []
for i in range(1,n+1):
    print("?",n-1)
    l = [j for j in range(1,n+1) if j != i]
    print(*l)
    sys.stdout.flush()
    if int(input()) == 0:
        ans.append(i)

print("!",len(ans))
print(*ans)
0