結果

問題 No.934 Explosive energy drink
ユーザー kohei2019kohei2019
提出日時 2022-05-14 15:00:19
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 457 ms / 2,000 ms
コード長 271 bytes
コンパイル時間 195 ms
コンパイル使用メモリ 82,732 KB
実行使用メモリ 93,444 KB
平均クエリ数 709.58
最終ジャッジ日時 2024-07-23 00:49:12
合計ジャッジ時間 7,330 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 62 ms
68,980 KB
testcase_01 AC 456 ms
93,444 KB
testcase_02 AC 60 ms
69,272 KB
testcase_03 AC 280 ms
92,108 KB
testcase_04 AC 450 ms
93,012 KB
testcase_05 AC 59 ms
69,448 KB
testcase_06 AC 58 ms
69,528 KB
testcase_07 AC 58 ms
70,196 KB
testcase_08 AC 58 ms
68,808 KB
testcase_09 AC 59 ms
68,788 KB
testcase_10 AC 59 ms
70,600 KB
testcase_11 AC 59 ms
69,516 KB
testcase_12 AC 70 ms
77,372 KB
testcase_13 AC 75 ms
80,296 KB
testcase_14 AC 76 ms
79,808 KB
testcase_15 AC 188 ms
92,048 KB
testcase_16 AC 94 ms
87,800 KB
testcase_17 AC 129 ms
92,808 KB
testcase_18 AC 131 ms
92,132 KB
testcase_19 AC 207 ms
92,532 KB
testcase_20 AC 316 ms
92,728 KB
testcase_21 AC 336 ms
92,508 KB
testcase_22 AC 448 ms
93,412 KB
testcase_23 AC 457 ms
92,876 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
ls = [i+1 for i in range(N)]
ll = []
for i in range(N):
    ls2 = ls[:]
    ls2.remove(i+1)
    print('? {}'.format(N-1))
    print(*ls2,sep=' ')
    f = int(input())
    if f == 0:
        ll.append(i+1)

print('! {}'.format(len(ll)))
print(*ll,sep=' ')
0