結果

問題 No.2806 Cornflake Man
ユーザー ntudantuda
提出日時 2024-07-13 16:26:13
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 571 bytes
コンパイル時間 518 ms
コンパイル使用メモリ 82,496 KB
実行使用メモリ 138,908 KB
最終ジャッジ日時 2024-07-13 16:26:19
合計ジャッジ時間 5,916 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 101 ms
110,888 KB
testcase_01 AC 147 ms
123,704 KB
testcase_02 AC 54 ms
69,536 KB
testcase_03 AC 144 ms
129,500 KB
testcase_04 AC 52 ms
68,816 KB
testcase_05 AC 65 ms
76,984 KB
testcase_06 AC 74 ms
86,848 KB
testcase_07 AC 162 ms
138,908 KB
testcase_08 AC 72 ms
84,064 KB
testcase_09 AC 105 ms
103,172 KB
testcase_10 TLE -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

N, M = map(int, input().split())
A = list(map(int, input().split()))
A.sort()
if A[0] != 0:
    print(-1)
    exit()
AS = set(A)

B = set()
for a in A:
    if a == 0:
        continue
    f = False
    for b in B:
        if a % b == 0:
            f = True
            break
    if f:
        continue
    f = False
    for i in range(2, M // a + 1):
        if i * a not in AS:
            f = True
            break
    if f:
        print(-1)
        exit()
    else:
        B.add(a)
if len(B) == 0:
    print(-1)
else:
    print(len(B))
    print(*sorted(list(B)))
0