結果

問題 No.2806 Cornflake Man
ユーザー rlangevinrlangevin
提出日時 2024-07-12 21:33:16
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 186 ms / 2,000 ms
コード長 403 bytes
コンパイル時間 149 ms
コンパイル使用メモリ 82,516 KB
実行使用メモリ 159,972 KB
最終ジャッジ日時 2024-07-17 20:25:55
合計ジャッジ時間 3,029 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 95 ms
107,688 KB
testcase_01 AC 132 ms
130,052 KB
testcase_02 AC 47 ms
70,708 KB
testcase_03 AC 133 ms
136,212 KB
testcase_04 AC 56 ms
68,896 KB
testcase_05 AC 58 ms
78,060 KB
testcase_06 AC 69 ms
88,960 KB
testcase_07 AC 153 ms
147,068 KB
testcase_08 AC 67 ms
86,176 KB
testcase_09 AC 91 ms
107,196 KB
testcase_10 AC 93 ms
96,176 KB
testcase_11 AC 54 ms
70,788 KB
testcase_12 AC 102 ms
97,896 KB
testcase_13 AC 147 ms
103,676 KB
testcase_14 AC 75 ms
83,912 KB
testcase_15 AC 186 ms
159,972 KB
testcase_16 AC 32 ms
52,540 KB
testcase_17 AC 32 ms
52,492 KB
testcase_18 AC 31 ms
53,696 KB
testcase_19 AC 32 ms
52,360 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N, M = map(int, input().split())
A = sorted(list(map(int, input().split())))
S = set()
ans = []
for a in A[1:]:
    if a not in S:
        ans.append(a)
        for i in range(a, M + 1, a):
            S.add(i)
            if len(S) > N:
                print(-1)
                exit()
                
S.add(0)
S = sorted(list(S))
if A == S:
    print(len(ans))
    print(*ans)
else:
    print(-1)    
0