結果

問題 No.942 プレゼント配り
ユーザー pekempeypekempey
提出日時 2019-12-05 00:16:44
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 521 bytes
コンパイル時間 292 ms
コンパイル使用メモリ 82,428 KB
実行使用メモリ 110,720 KB
最終ジャッジ日時 2024-05-08 12:35:22
合計ジャッジ時間 3,004 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
51,968 KB
testcase_01 AC 107 ms
110,720 KB
testcase_02 AC 37 ms
51,712 KB
testcase_03 AC 38 ms
52,096 KB
testcase_04 AC 88 ms
89,728 KB
testcase_05 AC 89 ms
97,152 KB
testcase_06 AC 38 ms
51,840 KB
testcase_07 AC 38 ms
52,096 KB
testcase_08 AC 84 ms
86,016 KB
testcase_09 AC 86 ms
87,536 KB
testcase_10 AC 38 ms
52,096 KB
testcase_11 AC 39 ms
52,096 KB
testcase_12 AC 37 ms
51,840 KB
testcase_13 AC 37 ms
51,968 KB
testcase_14 WA -
testcase_15 AC 73 ms
76,284 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 AC 38 ms
52,224 KB
testcase_19 AC 37 ms
51,968 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

N, K = map(int, input().split())

if N * (N + 1) // 2 % K != 0:
  print('No')
  sys.exit()



if N // K % 2 == 1 and (N // K) % K == 0:
  print('Yes')
  for i in range(K):
    a = []
    for j in range(N // K):
      a.append(K * j + (i + j) % K + 1)
    print(*a)
elif N // K % 2 == 0:
  print('Yes')
  a = []
  for i in range(N // 2):
    a.append(i)
    a.append(N - 1 - i)
  for i in range(K):
    b = []
    for j in range(N // K):
      b.append(a[i * N // K + j] + 1)
    print(*b)
else:
  print('No')
0