結果

問題 No.934 Explosive energy drink
ユーザー pekempeypekempey
提出日時 2019-11-29 21:53:54
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 451 ms / 2,000 ms
コード長 261 bytes
コンパイル時間 397 ms
コンパイル使用メモリ 82,448 KB
実行使用メモリ 93,936 KB
平均クエリ数 709.58
最終ジャッジ日時 2024-07-16 18:18:04
合計ジャッジ時間 6,918 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 58 ms
69,088 KB
testcase_01 AC 446 ms
93,200 KB
testcase_02 AC 56 ms
69,464 KB
testcase_03 AC 254 ms
92,368 KB
testcase_04 AC 443 ms
93,236 KB
testcase_05 AC 59 ms
69,116 KB
testcase_06 AC 55 ms
68,812 KB
testcase_07 AC 57 ms
69,884 KB
testcase_08 AC 56 ms
68,928 KB
testcase_09 AC 57 ms
69,352 KB
testcase_10 AC 57 ms
68,868 KB
testcase_11 AC 60 ms
71,348 KB
testcase_12 AC 72 ms
79,140 KB
testcase_13 AC 74 ms
81,428 KB
testcase_14 AC 76 ms
81,012 KB
testcase_15 AC 186 ms
92,076 KB
testcase_16 AC 92 ms
90,600 KB
testcase_17 AC 129 ms
92,264 KB
testcase_18 AC 126 ms
92,604 KB
testcase_19 AC 206 ms
92,532 KB
testcase_20 AC 313 ms
92,888 KB
testcase_21 AC 342 ms
93,344 KB
testcase_22 AC 451 ms
92,892 KB
testcase_23 AC 445 ms
93,936 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

N = int(input())
ans = []
for i in range(N):
  q = [j+1 for j in range(N) if i != j]
  print('? ' + str(len(q)))
  print(*q)
  sys.stdout.flush()
  if input() == '0':
    ans.append(i + 1)

print('! ' + str(len(ans)))
print(*ans)
sys.stdout.flush()
0