結果

問題 No.2806 Cornflake Man
ユーザー YuuuTYuuuT
提出日時 2024-07-12 22:02:03
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 1,106 bytes
コンパイル時間 276 ms
コンパイル使用メモリ 82,440 KB
実行使用メモリ 140,404 KB
最終ジャッジ日時 2024-07-12 22:02:41
合計ジャッジ時間 5,451 ms
ジャッジサーバーID
(参考情報)
judge6 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 117 ms
111,872 KB
testcase_01 AC 252 ms
124,020 KB
testcase_02 AC 61 ms
70,656 KB
testcase_03 AC 192 ms
129,576 KB
testcase_04 AC 57 ms
70,272 KB
testcase_05 AC 77 ms
83,200 KB
testcase_06 AC 80 ms
89,472 KB
testcase_07 AC 260 ms
140,404 KB
testcase_08 AC 76 ms
86,528 KB
testcase_09 AC 171 ms
119,680 KB
testcase_10 TLE -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

# oj t -c "python3 main.py"
import sys,math
from collections import defaultdict,deque
from itertools import combinations,permutations,accumulate,product
from bisect import bisect_left,bisect_right
from heapq import heappop,heappush,heapify
#from sortedcontainers import SortedList,SortedSet
def input():return sys.stdin.readline().rstrip()
def ii(): return int(input())
def ms(): return map(int, input().split())
def li(): return list(map(int,input().split()))
inf = pow(10,18)
mod = 998244353
#//////////////////////////////////
N,M = ms()
A = li()
A.sort()
AS = set(A)
ans = list()
ok = set()
ng = set()
def judge(a):
  for j in range(2,a+1):
    if a%j!=0: continue
    if j in ng: continue
    tmp = j
    while tmp<=A[-1]:
      if tmp not in AS:
        ng.add(j)
        break
      tmp += j
    if j in ng: continue
    else: 
      tmp = j
      while tmp<=A[-1]:
        ok.add(tmp)
        tmp += j
      return j
  return -1
  
for i in range(1,N):
  if A[i] in ok: continue
  res = judge(A[i])
  if res==-1:
    print(-1)
    exit()
  ans.append(res)
ans.sort()
print(len(ans))
print(*ans)
  
0