結果

問題 No.2806 Cornflake Man
ユーザー ntudantuda
提出日時 2024-07-13 16:42:08
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 233 ms / 2,000 ms
コード長 489 bytes
コンパイル時間 236 ms
コンパイル使用メモリ 82,496 KB
実行使用メモリ 181,228 KB
最終ジャッジ日時 2024-07-17 20:28:05
合計ジャッジ時間 3,592 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 132 ms
113,952 KB
testcase_01 AC 175 ms
131,720 KB
testcase_02 AC 59 ms
78,528 KB
testcase_03 AC 178 ms
139,304 KB
testcase_04 AC 53 ms
76,356 KB
testcase_05 AC 70 ms
87,896 KB
testcase_06 AC 94 ms
100,408 KB
testcase_07 AC 211 ms
154,800 KB
testcase_08 AC 90 ms
97,864 KB
testcase_09 AC 128 ms
106,100 KB
testcase_10 AC 120 ms
103,608 KB
testcase_11 AC 64 ms
73,848 KB
testcase_12 AC 146 ms
97,844 KB
testcase_13 AC 233 ms
137,000 KB
testcase_14 AC 89 ms
87,000 KB
testcase_15 AC 221 ms
181,228 KB
testcase_16 AC 36 ms
53,836 KB
testcase_17 AC 36 ms
53,268 KB
testcase_18 AC 36 ms
52,772 KB
testcase_19 AC 37 ms
53,408 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N, M = map(int, input().split())
A = list(map(int, input().split()))
A.sort()
dic = dict(zip(A, range(N)))

vstd = [False] * N
if A[0] != 0:
    print(-1)
    exit()
AS = set(A)

B = set()
for a in A[1:]:
    if vstd[dic[a]]:
        continue
    for i in range(2, M // a + 1):
        if i * a in AS:
            vstd[dic[i * a]] = True
        else:
            print(-1)
            exit()
    B.add(a)

if len(B) == 0:
    print(-1)
else:
    print(len(B))
    print(*sorted(list(B)))
0