結果

問題 No.2806 Cornflake Man
ユーザー titiatitia
提出日時 2024-07-15 02:45:43
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 676 bytes
コンパイル時間 376 ms
コンパイル使用メモリ 82,308 KB
実行使用メモリ 118,756 KB
最終ジャッジ日時 2024-07-15 02:45:52
合計ジャッジ時間 8,021 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 TLE -
testcase_01 -- -
testcase_02 -- -
testcase_03 -- -
testcase_04 -- -
testcase_05 -- -
testcase_06 -- -
testcase_07 -- -
testcase_08 -- -
testcase_09 -- -
testcase_10 -- -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

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

USED=set()
ko=0
SET=set(A)
ANS=[]

for i in range(1,M+1):
    if M//i>N:
        continue

    flag=1

    for j in range(10**9+1):
        if i*j>M:
            break
        if i*j in SET:
            if i*j in USED:
                pass
            else:
                flag+=1
        else:
            flag=0
            break

    if flag>1:
        ANS.append(i)

        for j in range(10**9+1):
            if i*j>M:
                break
            USED.add(i*j)

    if len(USED)==len(SET):
        print(len(ANS))
        print(*ANS)
        exit()

print(-1)
0