結果

問題 No.934 Explosive energy drink
ユーザー 👑 rin204rin204
提出日時 2022-01-18 23:55:05
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 494 ms / 2,000 ms
コード長 317 bytes
コンパイル時間 181 ms
コンパイル使用メモリ 82,376 KB
実行使用メモリ 93,912 KB
平均クエリ数 709.58
最終ジャッジ日時 2024-11-23 13:37:51
合計ジャッジ時間 6,762 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 65 ms
68,448 KB
testcase_01 AC 494 ms
93,272 KB
testcase_02 AC 65 ms
68,824 KB
testcase_03 AC 278 ms
93,528 KB
testcase_04 AC 482 ms
93,912 KB
testcase_05 AC 65 ms
69,464 KB
testcase_06 AC 63 ms
68,824 KB
testcase_07 AC 63 ms
68,952 KB
testcase_08 AC 63 ms
68,696 KB
testcase_09 AC 63 ms
68,184 KB
testcase_10 AC 64 ms
68,952 KB
testcase_11 AC 67 ms
68,736 KB
testcase_12 AC 83 ms
80,088 KB
testcase_13 AC 87 ms
80,984 KB
testcase_14 AC 90 ms
82,776 KB
testcase_15 AC 208 ms
92,984 KB
testcase_16 AC 112 ms
91,096 KB
testcase_17 AC 160 ms
92,976 KB
testcase_18 AC 158 ms
92,704 KB
testcase_19 AC 252 ms
93,872 KB
testcase_20 AC 338 ms
93,216 KB
testcase_21 AC 352 ms
92,760 KB
testcase_22 AC 464 ms
93,588 KB
testcase_23 AC 477 ms
93,656 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
ans = []
for i in range(1, n + 1):
    A = []
    for j in range(1, n + 1):
        if i != j:
            A.append(j)
    print("?", n - 1, flush = True)
    print(*A, flush = True)
    ret = int(input())
    if ret == 0:
        ans.append(i)
        
print("!", len(ans), flush = True)
print(*ans)
0