CF476D.Dreamoon and Sets

普及/提高-

通过率:0%

AC君温馨提醒

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

题目描述

Dreamoon likes to play with sets, integers and . is defined as the largest positive integer that divides both aa and bb .

Let SS be a set of exactly four distinct integers greater than 00 . Define SS to be of rank kk if and only if for all pairs of distinct elements sis_{i} , sjs_{j} from SS , .

Given kk and nn , Dreamoon wants to make up nn sets of rank kk using integers from 11 to mm such that no integer is used in two different sets (of course you can leave some integers without use). Calculate the minimum mm that makes it possible and print one possible solution.

输入格式

The single line of the input contains two space separated integers nn , kk ( 1<=n<=10000,1<=k<=1001<=n<=10000,1<=k<=100 ).

输出格式

On the first line print a single integer — the minimal possible mm .

On each of the next nn lines print four space separated integers representing the ii -th set.

Neither the order of the sets nor the order of integers within a set is important. If there are multiple possible solutions with minimal mm , print any one of them.

输入输出样例

  • 输入#1

    1 1
    

    输出#1

    5
    1 2 3 5
    
  • 输入#2

    2 2
    

    输出#2

    22
    2 4 6 22
    14 18 10 16
    

说明/提示

For the first example it's easy to see that set 1,2,3,4{1,2,3,4} isn't a valid set of rank 1 since .

首页