結果

問題 No.942 プレゼント配り
ユーザー ianCKianCK
提出日時 2019-12-09 08:14:20
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 21 ms / 2,000 ms
コード長 988 bytes
コンパイル時間 390 ms
コンパイル使用メモリ 39,016 KB
実行使用メモリ 8,596 KB
最終ジャッジ日時 2024-06-11 19:36:20
合計ジャッジ時間 1,926 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3 ms
7,496 KB
testcase_01 AC 20 ms
8,596 KB
testcase_02 AC 3 ms
7,572 KB
testcase_03 AC 4 ms
7,824 KB
testcase_04 AC 20 ms
8,540 KB
testcase_05 AC 21 ms
8,468 KB
testcase_06 AC 3 ms
7,484 KB
testcase_07 AC 3 ms
7,748 KB
testcase_08 AC 15 ms
8,400 KB
testcase_09 AC 19 ms
8,520 KB
testcase_10 AC 4 ms
7,524 KB
testcase_11 AC 4 ms
7,548 KB
testcase_12 AC 4 ms
7,476 KB
testcase_13 AC 3 ms
7,452 KB
testcase_14 AC 17 ms
8,356 KB
testcase_15 AC 13 ms
8,292 KB
testcase_16 AC 16 ms
8,428 KB
testcase_17 AC 15 ms
8,496 KB
testcase_18 AC 4 ms
7,856 KB
testcase_19 AC 3 ms
7,464 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function ‘int main()’:
main.cpp:10:14: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   10 |         scanf("%d%d", &n, &k);
      |         ~~~~~^~~~~~~~~~~~~~~~

ソースコード

diff #

#include <stdio.h>
#include <vector>
using namespace std;
constexpr int kN = int(2E5 + 10);
#define PB push_back
vector<int> ans[kN];

int main() {
	int n, k, need, now;
	scanf("%d%d", &n, &k);
	if (n == 1 && k == 1) {
		printf("Yes\n1\n");
		return 0;
	}
	if (n == k || (long long int) n * (long long int) (n + 1) % (k << 1) != 0) printf("No\n");
	else {
		need = n / k;
		now = 1;
		if (need & 1) {
			for (int i = 1; i <= k; i++) ans[i].PB(i);
			for (int i = 1, j = 0; i <= k; i++, j += 2) {
				if (j >= k) j -= k;
				ans[i].PB(k * 3 - j);
				ans[i].PB((k * 3 + 3) / 2 + j - i);
			}
			need -= 3;
			now = k * 3 + 1;
		}
		while (need) {
			for (int i = 1; i <= k; i++) ans[i].PB(now++);
			for (int i = k; i >= 1; i--) ans[i].PB(now++);
			need -= 2;
		}
		need = n / k;
		printf("Yes\n");
		for (int i = 1; i <= k; i++) {
			printf("%d", ans[i][0]);
			for (int j = 1; j < need; j++) printf(" %d", ans[i][j]);
			printf("\n");
		}
	}
}
0