結果

問題 No.2806 Cornflake Man
ユーザー ntudantuda
提出日時 2024-07-13 16:10:35
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 574 bytes
コンパイル時間 226 ms
コンパイル使用メモリ 82,408 KB
実行使用メモリ 138,648 KB
最終ジャッジ日時 2024-07-13 16:10:43
合計ジャッジ時間 7,015 ms
ジャッジサーバーID
(参考情報)
judge6 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 94 ms
110,668 KB
testcase_01 AC 352 ms
123,584 KB
testcase_02 AC 48 ms
68,492 KB
testcase_03 AC 254 ms
129,544 KB
testcase_04 AC 48 ms
67,364 KB
testcase_05 AC 70 ms
80,024 KB
testcase_06 AC 67 ms
86,940 KB
testcase_07 AC 396 ms
138,648 KB
testcase_08 AC 72 ms
83,936 KB
testcase_09 AC 215 ms
104,564 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
            continue
    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