結果

問題 No.942 プレゼント配り
ユーザー titiatitia
提出日時 2019-12-05 01:58:33
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
RE  
実行時間 -
コード長 589 bytes
コンパイル時間 212 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 34,304 KB
最終ジャッジ日時 2024-12-15 02:24:56
合計ジャッジ時間 4,268 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,624 KB
testcase_01 AC 211 ms
21,760 KB
testcase_02 AC 30 ms
10,624 KB
testcase_03 AC 30 ms
10,624 KB
testcase_04 AC 207 ms
18,816 KB
testcase_05 AC 208 ms
21,760 KB
testcase_06 RE -
testcase_07 AC 30 ms
10,752 KB
testcase_08 AC 160 ms
16,384 KB
testcase_09 AC 182 ms
17,408 KB
testcase_10 AC 30 ms
10,624 KB
testcase_11 AC 30 ms
10,752 KB
testcase_12 AC 30 ms
10,880 KB
testcase_13 AC 31 ms
10,624 KB
testcase_14 AC 187 ms
18,068 KB
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 AC 30 ms
10,880 KB
testcase_19 AC 30 ms
10,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,K=map(int,input().split())
if N==K==1:
    print("Yes")
    print(1)
    exit()

if N*(N+1)//2%K!=0:
    print("No")
else:
    ANS=[[0]*(N//K) for i in range(K)]

    rest=N//K
    col=0

    if rest%2==1:

        start=0

        for j in range(3):
            for i in range(K):
                ANS[(i+start)%K][j]=1+i+j*K

            start+=1
        col+=3

    for i in range(K):
        for j in range(col,rest):
            if j%2==0:
                ANS[i][j]=1+i+j*K
            else:
                ANS[i][j]=K-i+j*K

    print("Yes")
    for ans in ANS:
        print(*ans)
0