結果

問題 No.2806 Cornflake Man
ユーザー hirayuu_ychirayuu_yc
提出日時 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
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 103 ms
105,856 KB
testcase_01 AC 139 ms
123,316 KB
testcase_02 AC 55 ms
69,376 KB
testcase_03 AC 141 ms
129,684 KB
testcase_04 AC 52 ms
67,840 KB
testcase_05 AC 64 ms
75,392 KB
testcase_06 AC 78 ms
87,808 KB
testcase_07 AC 159 ms
140,800 KB
testcase_08 AC 75 ms
84,732 KB
testcase_09 AC 102 ms
100,480 KB
testcase_10 AC 104 ms
94,892 KB
testcase_11 AC 62 ms
70,144 KB
testcase_12 AC 115 ms
97,100 KB
testcase_13 AC 165 ms
116,608 KB
testcase_14 AC 84 ms
83,732 KB
testcase_15 AC 185 ms
155,508 KB
testcase_16 AC 37 ms
51,456 KB
testcase_17 AC 38 ms
51,456 KB
testcase_18 AC 38 ms
52,352 KB
testcase_19 AC 37 ms
52,096 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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)
0