結果

問題 No.942 プレゼント配り
ユーザー tnakao0123tnakao0123
提出日時 2019-12-07 17:52:39
言語 C++11
(gcc 11.4.0)
結果
WA  
実行時間 -
コード長 1,039 bytes
コンパイル時間 1,118 ms
コンパイル使用メモリ 86,096 KB
実行使用メモリ 8,960 KB
最終ジャッジ日時 2023-08-26 22:07:14
合計ジャッジ時間 3,655 ms
ジャッジサーバーID
(参考情報)
judge11 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 4 ms
8,176 KB
testcase_01 AC 23 ms
8,644 KB
testcase_02 AC 4 ms
8,184 KB
testcase_03 AC 5 ms
8,276 KB
testcase_04 AC 22 ms
8,900 KB
testcase_05 AC 22 ms
8,648 KB
testcase_06 AC 5 ms
8,180 KB
testcase_07 AC 5 ms
8,136 KB
testcase_08 AC 17 ms
8,812 KB
testcase_09 AC 20 ms
8,960 KB
testcase_10 AC 4 ms
8,160 KB
testcase_11 AC 4 ms
7,984 KB
testcase_12 AC 4 ms
8,068 KB
testcase_13 AC 5 ms
7,980 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 AC 5 ms
8,340 KB
testcase_19 AC 5 ms
8,212 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

/* -*- coding: utf-8 -*-
 *
 * 942.cc:  No.942 プレゼント配り - yukicoder
 */

#include<cstdio>
#include<cstdlib>
#include<cstring>
#include<cmath>
#include<iostream>
#include<string>
#include<vector>
#include<map>
#include<set>
#include<stack>
#include<list>
#include<queue>
#include<deque>
#include<algorithm>
#include<numeric>
#include<utility>
#include<complex>
#include<functional>
 
using namespace std;

/* constant */

const int MAX_N = 200000;

/* typedef */

typedef vector<int> vi;

/* global variables */

vi ds[MAX_N];

/* subroutines */

/* main */

int main() {
  int n, k;
  scanf("%d%d", &n, &k);

  int m = n / k;
  if (k > 1 && (m & 1)) {
    puts("No");
    return 0;
  }

  for (int d = 1, x = 0, dx = 1; d <= n; d++, x += dx) {
    if (x < 0) x = 0, dx = 1;
    else if (x >= k) x = k - 1, dx = -1;
    ds[x].push_back(d);
  }

  puts("yes");
  for (int i = 0; i < k; i++) {
    for (int j = 0; j < m; j++) {
      if (j) putchar(' ');
      printf("%d", ds[i][j]);
    }
    putchar('\n');
  }

  return 0;
}
0