結果

問題 No.2806 Cornflake Man
ユーザー hato336hato336
提出日時 2024-07-12 21:35:28
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 240 ms / 2,000 ms
コード長 684 bytes
コンパイル時間 261 ms
コンパイル使用メモリ 82,404 KB
実行使用メモリ 156,372 KB
最終ジャッジ日時 2024-07-17 20:26:07
合計ジャッジ時間 4,705 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 185 ms
123,188 KB
testcase_01 AC 208 ms
137,692 KB
testcase_02 AC 136 ms
94,328 KB
testcase_03 AC 215 ms
143,800 KB
testcase_04 AC 133 ms
93,172 KB
testcase_05 AC 147 ms
98,024 KB
testcase_06 AC 156 ms
109,484 KB
testcase_07 AC 229 ms
153,440 KB
testcase_08 AC 156 ms
107,028 KB
testcase_09 AC 177 ms
119,132 KB
testcase_10 AC 179 ms
108,164 KB
testcase_11 AC 139 ms
90,516 KB
testcase_12 AC 185 ms
111,760 KB
testcase_13 AC 230 ms
135,748 KB
testcase_14 AC 151 ms
95,500 KB
testcase_15 AC 240 ms
156,372 KB
testcase_16 AC 113 ms
85,904 KB
testcase_17 AC 111 ms
85,984 KB
testcase_18 AC 110 ms
85,940 KB
testcase_19 AC 113 ms
85,984 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import collections,sys,math,functools,operator,itertools,bisect,heapq,decimal,string,time,random
#sys.setrecursionlimit(10**9)
#sys.set_int_max_str_digits(0)
#input = sys.stdin.readline
#n = int(input())
#
#alist = []
input = sys.stdin.readline

n,m = map(int,input().split())
a = list(map(int,input().split()))
a.sort()
b = []
check = [0 for i in range(n)]
check[0] = 1
c = collections.defaultdict(lambda :-1)
for i in range(n):
    c[a[i]] = i
for i in range(1,n):
    if check[i] == 0:
        x = a[i]
        while x <= m:
            check[c[x]] = 1
            if c[x] == -1:
                exit(print(-1))
            x += a[i]
        b.append(a[i])
print(len(b))
print(*b)
0