結果

問題 No.934 Explosive energy drink
ユーザー yansi819yansi819
提出日時 2024-05-12 10:20:47
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 505 ms / 2,000 ms
コード長 232 bytes
コンパイル時間 331 ms
コンパイル使用メモリ 82,420 KB
実行使用メモリ 93,464 KB
平均クエリ数 709.58
最終ジャッジ日時 2024-05-12 10:20:56
合計ジャッジ時間 7,747 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 59 ms
70,072 KB
testcase_01 AC 505 ms
93,132 KB
testcase_02 AC 56 ms
69,008 KB
testcase_03 AC 259 ms
92,480 KB
testcase_04 AC 491 ms
93,140 KB
testcase_05 AC 59 ms
69,848 KB
testcase_06 AC 56 ms
69,804 KB
testcase_07 AC 56 ms
69,000 KB
testcase_08 AC 57 ms
69,472 KB
testcase_09 AC 57 ms
69,476 KB
testcase_10 AC 57 ms
70,388 KB
testcase_11 AC 58 ms
69,340 KB
testcase_12 AC 69 ms
78,772 KB
testcase_13 AC 75 ms
81,156 KB
testcase_14 AC 75 ms
81,812 KB
testcase_15 AC 193 ms
92,076 KB
testcase_16 AC 95 ms
90,768 KB
testcase_17 AC 133 ms
92,088 KB
testcase_18 AC 133 ms
92,312 KB
testcase_19 AC 218 ms
92,012 KB
testcase_20 AC 323 ms
92,664 KB
testcase_21 AC 342 ms
92,780 KB
testcase_22 AC 454 ms
93,464 KB
testcase_23 AC 498 ms
93,164 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
B = []
for b in range(N):
    A = [(a + 1) for a in range(N) if a != b]
    print("? " + str(len(A)))
    print(*A)
    ans = int(input())
    if not ans:
        B.append(b + 1)
print("! " + str(len(B)))
print(*B)
0