結果

問題 No.942 プレゼント配り
ユーザー risujirohrisujiroh
提出日時 2019-12-05 00:06:21
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 420 bytes
コンパイル時間 1,758 ms
コンパイル使用メモリ 165,644 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-05-08 12:24:37
合計ジャッジ時間 4,068 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 WA -
testcase_05 WA -
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 AC 2 ms
5,376 KB
testcase_11 AC 2 ms
5,376 KB
testcase_12 AC 2 ms
5,376 KB
testcase_13 AC 2 ms
5,376 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 AC 2 ms
5,376 KB
testcase_19 AC 2 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

int main() {
  cin.tie(nullptr);
  ios::sync_with_stdio(false);
  int n, k;
  cin >> n >> k;
  if (2 * k == n) {
    cout << "Yes\n";
    for (int i = 0; i < k; ++i) {
      cout << i + 1 << ' ' << n - i << '\n';
    }
    return 0;
  }
  if (k == 1) {
    for (int i = 0; i < n; ++i) {
      cout << i + 1 << " \n"[i == n - 1];
    }
    return 0;
  }
  cout << "No\n";
}
0