結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 66 ms
68,300 KB
testcase_01 AC 511 ms
92,852 KB
testcase_02 AC 64 ms
68,984 KB
testcase_03 AC 280 ms
92,920 KB
testcase_04 AC 500 ms
93,760 KB
testcase_05 AC 65 ms
69,472 KB
testcase_06 AC 62 ms
69,372 KB
testcase_07 AC 62 ms
69,532 KB
testcase_08 AC 62 ms
68,864 KB
testcase_09 AC 62 ms
68,984 KB
testcase_10 AC 62 ms
69,612 KB
testcase_11 AC 65 ms
70,192 KB
testcase_12 AC 77 ms
78,324 KB
testcase_13 AC 83 ms
81,356 KB
testcase_14 AC 84 ms
82,548 KB
testcase_15 AC 213 ms
91,752 KB
testcase_16 AC 108 ms
90,280 KB
testcase_17 AC 146 ms
92,936 KB
testcase_18 AC 150 ms
92,088 KB
testcase_19 AC 234 ms
92,612 KB
testcase_20 AC 363 ms
92,768 KB
testcase_21 AC 384 ms
92,784 KB
testcase_22 AC 493 ms
93,812 KB
testcase_23 AC 498 ms
93,716 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