結果

問題 No.2806 Cornflake Man
ユーザー ああいいああいい
提出日時 2024-07-13 20:06:49
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 182 ms / 2,000 ms
コード長 322 bytes
コンパイル時間 127 ms
コンパイル使用メモリ 82,464 KB
実行使用メモリ 184,528 KB
最終ジャッジ日時 2024-07-17 20:28:06
合計ジャッジ時間 2,952 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 95 ms
104,704 KB
testcase_01 AC 146 ms
146,048 KB
testcase_02 AC 50 ms
68,608 KB
testcase_03 AC 152 ms
155,264 KB
testcase_04 AC 47 ms
67,200 KB
testcase_05 AC 61 ms
80,512 KB
testcase_06 AC 69 ms
86,272 KB
testcase_07 AC 176 ms
160,640 KB
testcase_08 AC 65 ms
84,224 KB
testcase_09 AC 102 ms
114,688 KB
testcase_10 AC 100 ms
102,016 KB
testcase_11 AC 55 ms
69,760 KB
testcase_12 AC 106 ms
106,032 KB
testcase_13 AC 171 ms
115,636 KB
testcase_14 AC 75 ms
85,796 KB
testcase_15 AC 182 ms
184,528 KB
testcase_16 AC 33 ms
52,352 KB
testcase_17 AC 36 ms
52,352 KB
testcase_18 AC 35 ms
52,096 KB
testcase_19 AC 36 ms
51,968 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,M = map(int,input().split())
A = list(map(int,input().split()))
import sys
A = A[1:]
s = set(A)
A.sort()
d = set()

ans = []
for i in range(N - 1):
	a = A[i]
	if a not in d:
		ans.append(a)
		u = a
		while u <= M:
			if u not in s:
				print(-1)
				exit()
			else:
				d.add(u)
			u += a
print(len(ans))
print(*ans)
			
0