結果

問題 No.2806 Cornflake Man
ユーザー mkawa2mkawa2
提出日時 2024-07-12 21:54:46
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 171 ms / 2,000 ms
コード長 1,060 bytes
コンパイル時間 213 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 152,064 KB
最終ジャッジ日時 2024-07-17 20:26:37
合計ジャッジ時間 3,137 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 102 ms
102,400 KB
testcase_01 AC 149 ms
143,232 KB
testcase_02 AC 52 ms
68,608 KB
testcase_03 AC 149 ms
152,064 KB
testcase_04 AC 50 ms
67,712 KB
testcase_05 AC 64 ms
79,488 KB
testcase_06 AC 75 ms
85,888 KB
testcase_07 AC 171 ms
138,280 KB
testcase_08 AC 70 ms
83,328 KB
testcase_09 AC 107 ms
113,024 KB
testcase_10 AC 99 ms
93,696 KB
testcase_11 AC 62 ms
70,528 KB
testcase_12 AC 118 ms
95,472 KB
testcase_13 AC 163 ms
113,536 KB
testcase_14 AC 75 ms
82,816 KB
testcase_15 AC 166 ms
152,028 KB
testcase_16 AC 36 ms
52,096 KB
testcase_17 AC 36 ms
52,352 KB
testcase_18 AC 37 ms
52,352 KB
testcase_19 AC 37 ms
52,608 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

# sys.setrecursionlimit(200005)
# sys.set_int_max_str_digits(200005)
int1 = lambda x: int(x)-1
pDB = lambda *x: print(*x, end="\n", file=sys.stderr)
p2D = lambda x: print(*x, sep="\n", end="\n\n", file=sys.stderr)
def II(): return int(sys.stdin.readline())
def LI(): return list(map(int, sys.stdin.readline().split()))
def LLI(rows_number): return [LI() for _ in range(rows_number)]
def LI1(): return list(map(int1, sys.stdin.readline().split()))
def LLI1(rows_number): return [LI1() for _ in range(rows_number)]
def SI(): return sys.stdin.readline().rstrip()

dij = [(0, 1), (-1, 0), (0, -1), (1, 0)]
# dij = [(0, 1), (-1, 0), (0, -1), (1, 0), (1, 1), (1, -1), (-1, 1), (-1, -1)]
# inf = -1-(-1 << 31)
inf = -1-(-1 << 62)

md = 10**9+7
# md = 998244353

def ng():
    print(-1)
    exit()

n,m=LI()
aa=LI()
aa.sort()
ss=set(aa)
fin=set()
ans=[]
for a in aa:
    if a==0:continue
    if a in fin:continue
    if m//a>n:ng()
    for b in range(a+a,m+1,a):
        if b not in ss:ng()
        fin.add(b)
    ans.append(a)
print(len(ans))
print(*ans)
0