結果

問題 No.2806 Cornflake Man
ユーザー detteiuudetteiuu
提出日時 2024-07-12 21:51:23
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 190 ms / 2,000 ms
コード長 405 bytes
コンパイル時間 692 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 186,712 KB
最終ジャッジ日時 2024-07-17 20:26:27
合計ジャッジ時間 2,900 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 94 ms
105,652 KB
testcase_01 AC 146 ms
149,608 KB
testcase_02 AC 50 ms
70,760 KB
testcase_03 AC 152 ms
158,204 KB
testcase_04 AC 45 ms
67,900 KB
testcase_05 AC 60 ms
81,980 KB
testcase_06 AC 70 ms
88,004 KB
testcase_07 AC 170 ms
162,264 KB
testcase_08 AC 63 ms
84,740 KB
testcase_09 AC 106 ms
117,928 KB
testcase_10 AC 101 ms
101,784 KB
testcase_11 AC 54 ms
72,024 KB
testcase_12 AC 107 ms
99,164 KB
testcase_13 AC 167 ms
116,672 KB
testcase_14 AC 81 ms
86,076 KB
testcase_15 AC 190 ms
186,712 KB
testcase_16 AC 36 ms
53,368 KB
testcase_17 AC 36 ms
52,980 KB
testcase_18 AC 32 ms
52,284 KB
testcase_19 AC 31 ms
52,636 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N, M = map(int, input().split())
A = sorted(list(map(int, input().split())))

S = set(A[1:])
used = set()
ans = []
for i in range(1, N):
    if A[i] not in S:
        continue
    ans.append(A[i])
    for j in range(A[i], M+1, A[i]):
        if j not in S and j not in used:
            exit(print(-1))
        if j not in used:
            S.remove(j)
            used.add(j)

print(len(ans))
print(*ans)
0