CF1468L.Prime Divisors Selection

普及/提高-

通过率:0%

AC君温馨提醒

该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。

题目描述

Suppose you have a sequence of kk integers A=[a1,a2,,ak]A = [a_1, a_2, \dots , a_k] where each ai2a_i \geq 2 . A sequence of prime integers P=[p1,p2,,pk]P = [p_1, p_2, \dots, p_k] is called suitable for the sequence AA if a1a_1 is divisible by p1p_1 , a2a_2 is divisible by p2p_2 and so on.

A sequence of prime integers PP is called friendly if there are no unique integers in this sequence.

A sequence AA is called ideal, if each sequence PP that is suitable for AA is friendly as well (i. e. there is no sequence PP that is suitable for AA , but not friendly). For example, the sequence [2,4,16][2, 4, 16] is ideal, while the sequence [2,4,6][2, 4, 6] is not ideal (there exists a sequence P=[2,2,3]P = [2, 2, 3] which is suitable for AA , but not friendly).

You are given nn different integers x1x_1 , x2x_2 , ..., xnx_n . You have to choose exactly kk of them in such a way that they form an ideal sequence, or report that it is impossible. Note that no integer can be chosen more than once.

输入格式

The first line contains two integers nn and kk ( 1kn10001 \leq k \leq n \leq 1000 ).

The second line contains nn pairwise distinct integers x1x_1 , x2x_2 , ..., xnx_n ( 2xi10182 \leq x_i \leq 10^{18} ).

输出格式

If it is impossible to choose exactly kk integers from x1x_1 , x2x_2 , ..., xnx_n in such a way that the chosen integers form an ideal sequence, print 00 .

Otherwise, print kk pairwise distinct integers — the elements of the chosen ideal sequence. If there are multiple answers, print any of them.

输入输出样例

  • 输入#1

    3 3
    2 4 6

    输出#1

    0
  • 输入#2

    3 3
    2 4 16

    输出#2

    2 4 16
  • 输入#3

    4 3
    2 4 6 16

    输出#3

    2 4 16
首页