結果

問題 No.2806 Cornflake Man
ユーザー N-noa21N-noa21
提出日時 2024-09-30 15:04:49
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 231 ms / 2,000 ms
コード長 403 bytes
コンパイル時間 159 ms
コンパイル使用メモリ 82,016 KB
実行使用メモリ 188,504 KB
最終ジャッジ日時 2024-09-30 15:04:54
合計ジャッジ時間 3,676 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 105 ms
106,132 KB
testcase_01 AC 169 ms
125,332 KB
testcase_02 AC 55 ms
71,628 KB
testcase_03 AC 169 ms
131,064 KB
testcase_04 AC 53 ms
69,984 KB
testcase_05 AC 72 ms
83,908 KB
testcase_06 AC 78 ms
90,340 KB
testcase_07 AC 194 ms
140,204 KB
testcase_08 AC 76 ms
86,156 KB
testcase_09 AC 132 ms
122,196 KB
testcase_10 AC 145 ms
95,988 KB
testcase_11 AC 68 ms
74,764 KB
testcase_12 AC 145 ms
98,692 KB
testcase_13 AC 210 ms
116,244 KB
testcase_14 AC 90 ms
84,832 KB
testcase_15 AC 231 ms
188,504 KB
testcase_16 AC 40 ms
54,536 KB
testcase_17 AC 38 ms
54,460 KB
testcase_18 AC 38 ms
54,192 KB
testcase_19 AC 39 ms
55,064 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,M = map(int, input().split())
A = list(map(int, input().split()))
A.sort()
from collections import defaultdict
d = defaultdict(lambda:0)
s_A = set(A)
ans = []
for i in A[1:]:

    if d[i] > 0:
        continue

    for j in range(i,M+1,i):
        if j not in s_A:
            print(-1)
            exit()
        else:
            d[j] += 1
    ans.append(i)
    #print(d)
print(len(ans))
print(*ans)
0