結果

問題 No.942 プレゼント配り
ユーザー rlangevinrlangevin
提出日時 2023-10-02 08:48:37
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 293 bytes
コンパイル時間 336 ms
コンパイル使用メモリ 82,376 KB
実行使用メモリ 97,272 KB
最終ジャッジ日時 2024-07-26 13:36:17
合計ジャッジ時間 3,256 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 93 ms
97,272 KB
testcase_02 AC 39 ms
52,096 KB
testcase_03 AC 42 ms
52,224 KB
testcase_04 AC 80 ms
78,400 KB
testcase_05 WA -
testcase_06 AC 38 ms
51,968 KB
testcase_07 AC 39 ms
51,968 KB
testcase_08 AC 79 ms
77,440 KB
testcase_09 AC 79 ms
77,544 KB
testcase_10 AC 39 ms
51,968 KB
testcase_11 AC 38 ms
52,500 KB
testcase_12 AC 38 ms
51,968 KB
testcase_13 AC 40 ms
51,840 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 AC 38 ms
52,096 KB
testcase_19 AC 42 ms
52,096 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N, K = map(int, input().split())
if N % (2 * K):
    print("No")
    exit()

n = N // (2 * K)
ans = [[] for i in range(K)]
now = 1
for i in range(K):
    for _ in range(n):
        ans[i].append(now)
        ans[i].append(N + 1 - now)
        now += 1

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