結果

問題 No.934 Explosive energy drink
ユーザー hedwig100hedwig100
提出日時 2020-04-14 11:51:42
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 468 ms / 2,000 ms
コード長 556 bytes
コンパイル時間 287 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 27,864 KB
平均クエリ数 709.58
最終ジャッジ日時 2024-07-17 03:25:57
合計ジャッジ時間 6,608 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 62 ms
27,592 KB
testcase_01 AC 468 ms
27,608 KB
testcase_02 AC 56 ms
27,608 KB
testcase_03 AC 249 ms
27,352 KB
testcase_04 AC 468 ms
27,736 KB
testcase_05 AC 61 ms
27,480 KB
testcase_06 AC 59 ms
27,352 KB
testcase_07 AC 60 ms
27,224 KB
testcase_08 AC 60 ms
27,352 KB
testcase_09 AC 60 ms
27,608 KB
testcase_10 AC 60 ms
27,480 KB
testcase_11 AC 54 ms
27,480 KB
testcase_12 AC 57 ms
26,968 KB
testcase_13 AC 61 ms
27,224 KB
testcase_14 AC 64 ms
27,472 KB
testcase_15 AC 175 ms
27,608 KB
testcase_16 AC 91 ms
27,608 KB
testcase_17 AC 115 ms
27,480 KB
testcase_18 AC 123 ms
27,480 KB
testcase_19 AC 206 ms
27,480 KB
testcase_20 AC 322 ms
27,864 KB
testcase_21 AC 336 ms
27,608 KB
testcase_22 AC 464 ms
27,352 KB
testcase_23 AC 464 ms
27,352 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

MOD = 10 ** 9 + 7
INF = 10 ** 12
import sys
sys.setrecursionlimit(1000000)
dy = (-1,0,1,0)
dx = (0,1,0,-1)
from  itertools import permutations
from math import gcd

def main():
    n = int(input())
    a = list(range(1,n + 1))
    ans = []
    for j in range(1,n + 1):
        print("? {}".format(n - 1),flush = True)
        print(' '.join([str(i) for i in a if i != j]))
        rep = int(input())
        if rep == 0:
            ans.append(str(j))
    
    print("! {}".format(len(ans)))
    print(' '.join(ans))

if __name__ =='__main__':
    main()  
0