結果

問題 No.942 プレゼント配り
ユーザー ianCKianCK
提出日時 2019-12-09 08:11:41
言語 C++11
(gcc 11.4.0)
結果
RE  
実行時間 -
コード長 1,000 bytes
コンパイル時間 606 ms
コンパイル使用メモリ 39,040 KB
実行使用メモリ 8,704 KB
最終ジャッジ日時 2024-06-11 19:32:15
合計ジャッジ時間 2,662 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 6 ms
7,808 KB
testcase_01 AC 27 ms
8,464 KB
testcase_02 AC 5 ms
7,552 KB
testcase_03 AC 6 ms
7,552 KB
testcase_04 AC 26 ms
8,576 KB
testcase_05 AC 26 ms
8,468 KB
testcase_06 RE -
testcase_07 AC 5 ms
7,680 KB
testcase_08 AC 21 ms
8,448 KB
testcase_09 AC 24 ms
8,448 KB
testcase_10 AC 5 ms
7,680 KB
testcase_11 AC 5 ms
7,552 KB
testcase_12 AC 5 ms
7,552 KB
testcase_13 AC 5 ms
7,552 KB
testcase_14 AC 22 ms
8,356 KB
testcase_15 AC 16 ms
8,448 KB
testcase_16 AC 19 ms
8,704 KB
testcase_17 AC 19 ms
8,448 KB
testcase_18 AC 5 ms
7,936 KB
testcase_19 AC 6 ms
7,552 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 ((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 <= n; i++) ans[1].PB(i);	
			need = 0;
		}	
		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