結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 106 ms
112,836 KB
testcase_01 AC 161 ms
124,024 KB
testcase_02 AC 56 ms
71,948 KB
testcase_03 AC 164 ms
129,500 KB
testcase_04 AC 54 ms
70,340 KB
testcase_05 AC 72 ms
84,068 KB
testcase_06 AC 80 ms
90,912 KB
testcase_07 AC 197 ms
140,356 KB
testcase_08 AC 76 ms
86,652 KB
testcase_09 AC 122 ms
119,616 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):
  num = list()
  for i in range(2,a+1):
    if i*i>a: break
    if a%i!=0: continue
    num.append(i)
    if a//i!=i:
      num.append(a//i)
  num.append(a)
  num.sort()
  for j in num:
    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