結果

問題 No.934 Explosive energy drink
ユーザー 👑 KazunKazun
提出日時 2020-11-27 04:29:17
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 483 ms / 2,000 ms
コード長 250 bytes
コンパイル時間 178 ms
コンパイル使用メモリ 82,296 KB
実行使用メモリ 93,864 KB
平均クエリ数 709.58
最終ジャッジ日時 2024-07-17 07:34:42
合計ジャッジ時間 6,660 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 61 ms
69,376 KB
testcase_01 AC 476 ms
93,864 KB
testcase_02 AC 59 ms
69,376 KB
testcase_03 AC 265 ms
92,572 KB
testcase_04 AC 475 ms
93,860 KB
testcase_05 AC 61 ms
69,904 KB
testcase_06 AC 58 ms
68,944 KB
testcase_07 AC 59 ms
69,020 KB
testcase_08 AC 58 ms
68,936 KB
testcase_09 AC 59 ms
69,024 KB
testcase_10 AC 59 ms
69,148 KB
testcase_11 AC 61 ms
70,208 KB
testcase_12 AC 75 ms
80,080 KB
testcase_13 AC 78 ms
81,120 KB
testcase_14 AC 84 ms
83,192 KB
testcase_15 AC 191 ms
92,872 KB
testcase_16 AC 99 ms
89,848 KB
testcase_17 AC 134 ms
92,300 KB
testcase_18 AC 135 ms
92,372 KB
testcase_19 AC 217 ms
92,544 KB
testcase_20 AC 332 ms
93,200 KB
testcase_21 AC 349 ms
93,156 KB
testcase_22 AC 466 ms
93,544 KB
testcase_23 AC 483 ms
93,848 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def quest(x):
    T=[i for i in range(1,N+1) if i!=x]
    print("?",N-1)
    print(*T)

    return int(input())

def answer(A):
    print("!",len(A))
    print(*A)
    exit(0)


N=int(input())
print(answer([i for i in range(1,N+1) if not quest(i)]))
0