結果

問題 No.942 プレゼント配り
ユーザー tktk_snsntktk_snsn
提出日時 2020-11-29 22:47:57
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 476 bytes
コンパイル時間 252 ms
コンパイル使用メモリ 82,500 KB
実行使用メモリ 89,228 KB
最終ジャッジ日時 2024-09-13 02:11:31
合計ジャッジ時間 3,109 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 97 ms
89,228 KB
testcase_02 AC 37 ms
52,032 KB
testcase_03 AC 37 ms
53,108 KB
testcase_04 AC 82 ms
79,288 KB
testcase_05 WA -
testcase_06 AC 37 ms
53,888 KB
testcase_07 AC 36 ms
52,816 KB
testcase_08 AC 75 ms
77,460 KB
testcase_09 AC 78 ms
77,816 KB
testcase_10 AC 36 ms
52,328 KB
testcase_11 AC 37 ms
53,092 KB
testcase_12 AC 36 ms
52,428 KB
testcase_13 AC 36 ms
52,684 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 AC 36 ms
52,764 KB
testcase_19 AC 39 ms
53,096 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def main():
    N, K = map(int, input().split())
    tot = N * (N + 1) // 2
    if tot % K != 0:
        print("No")
        return

    if (N // K) % 2 == 1:
        print("No")
        return

    ans = [[] for _ in range(K)]
    value = 1
    for i in range(N // K):
        rng = range(K) if i % 2 else reversed(range(K))
        for j in rng:
            ans[j].append(value)
            value += 1
    print("Yes")
    for a in ans:
        print(*a)
    return


main()
0