結果
| 問題 |
No.2806 Cornflake Man
|
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2024-07-04 08:15:41 |
| 言語 | PyPy3 (7.3.15) |
| 結果 |
AC
|
| 実行時間 | 185 ms / 2,000 ms |
| コード長 | 265 bytes |
| コンパイル時間 | 540 ms |
| コンパイル使用メモリ | 82,432 KB |
| 実行使用メモリ | 155,508 KB |
| 最終ジャッジ日時 | 2024-07-17 20:25:13 |
| 合計ジャッジ時間 | 3,060 ms |
|
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 17 |
ソースコード
N,M=map(int,input().split())
A=sorted(list(map(int,input().split()))[1:])
use={a:False for a in A}
ans=[]
for a in A:
if use[a]:
continue
ans.append(a)
for i in range(a,M+1,a):
if i not in use:
print(-1)
exit()
use[i]=True
print(len(ans))
print(*ans)