結果

問題 No.2806 Cornflake Man
ユーザー 👑 rin204rin204
提出日時 2024-07-12 21:25:59
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 202 ms / 2,000 ms
コード長 319 bytes
コンパイル時間 169 ms
コンパイル使用メモリ 82,220 KB
実行使用メモリ 184,624 KB
最終ジャッジ日時 2024-07-17 20:25:38
合計ジャッジ時間 3,206 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 98 ms
104,360 KB
testcase_01 AC 151 ms
145,924 KB
testcase_02 AC 52 ms
68,880 KB
testcase_03 AC 154 ms
154,280 KB
testcase_04 AC 49 ms
68,636 KB
testcase_05 AC 65 ms
80,648 KB
testcase_06 AC 74 ms
87,404 KB
testcase_07 AC 172 ms
160,572 KB
testcase_08 AC 72 ms
84,092 KB
testcase_09 AC 110 ms
115,856 KB
testcase_10 AC 109 ms
102,220 KB
testcase_11 AC 60 ms
72,552 KB
testcase_12 AC 118 ms
101,608 KB
testcase_13 AC 183 ms
115,984 KB
testcase_14 AC 87 ms
86,096 KB
testcase_15 AC 202 ms
184,624 KB
testcase_16 AC 37 ms
52,316 KB
testcase_17 AC 36 ms
52,124 KB
testcase_18 AC 37 ms
53,148 KB
testcase_19 AC 37 ms
52,160 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, m = map(int, input().split())
A = list(map(int, input().split()))
A.sort()
se = set(A)
se2 = set()
B = []
for a in A[1:]:
    if a in se2:
        continue

    for b in range(a, m + 1, a):
        if b not in se:
            print(-1)
            exit()
        se2.add(b)

    B.append(a)

print(len(B))
print(*B)
0