結果

問題 No.2806 Cornflake Man
ユーザー ra5anchorra5anchor
提出日時 2024-07-13 20:22:41
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 406 ms / 2,000 ms
コード長 463 bytes
コンパイル時間 152 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 242,628 KB
最終ジャッジ日時 2024-07-17 20:28:10
合計ジャッジ時間 4,314 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 365 ms
242,628 KB
testcase_01 AC 144 ms
144,080 KB
testcase_02 AC 144 ms
148,920 KB
testcase_03 AC 152 ms
153,048 KB
testcase_04 AC 105 ms
117,588 KB
testcase_05 AC 63 ms
80,176 KB
testcase_06 AC 406 ms
240,408 KB
testcase_07 AC 176 ms
170,064 KB
testcase_08 AC 217 ms
227,820 KB
testcase_09 AC 105 ms
114,880 KB
testcase_10 AC 111 ms
101,612 KB
testcase_11 AC 60 ms
70,948 KB
testcase_12 AC 114 ms
100,348 KB
testcase_13 AC 177 ms
114,688 KB
testcase_14 AC 82 ms
85,908 KB
testcase_15 AC 196 ms
183,236 KB
testcase_16 AC 35 ms
52,228 KB
testcase_17 AC 35 ms
53,176 KB
testcase_18 AC 36 ms
52,124 KB
testcase_19 AC 37 ms
53,828 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N, M = map(int, input().split())
A = list(map(int, input().split()))
A.sort()
stA = set(A)

stA.discard(0)

if A[1] == 1:
    if M+1 == N:
        print(1)
        print(1)
        exit()
    else:
        print(-1)
        exit()


ansset = set()
ans = []
for p in A:
    if p not in ansset and p != 0:
        ans.append(p)
        for i in range(p, M+1, p):
            ansset.add(i)

if ansset == stA:
    print(len(ans))
    print(*ans)
else:
    print(-1)
0