A13383 | Same Parity Summands
时间限制1s
内存限制256MB
通过 / 提交0/0
题目描述
You are given two positive integers $n$ ( $1 \le n \le 10^9$ ) and $k$ ( $1 \le k \le 100$ ). Represent the number $n$ as the sum of $k$ positive integers of the same parity (have the same remainder when divided by $2$ ).
In other words, find $a_1, a_2, \ldots, a_k$ such that all $a_i>0$ , $n = a_1 + a_2 + \ldots + a_k$ and either all $a_i$ are even or all $a_i$ are odd at the same time.
If such a representation does not exist, then report it.
In other words, find $a_1, a_2, \ldots, a_k$ such that all $a_i>0$ , $n = a_1 + a_2 + \ldots + a_k$ and either all $a_i$ are even or all $a_i$ are odd at the same time.
If such a representation does not exist, then report it.
输入格式
The first line contains an integer $t$ ( $1 \le t \le 1000$ ) — the number of test cases in the input. Next, $t$ test cases are given, one per line.
Each test case is two positive integers $n$ ( $1 \le n \le 10^9$ ) and $k$ ( $1 \le k \le 100$ ).
Each test case is two positive integers $n$ ( $1 \le n \le 10^9$ ) and $k$ ( $1 \le k \le 100$ ).
输出格式
For each test case print:
- YES and the required values $a_i$ , if the answer exists (if there are several answers, print any of them);
- NO if the answer does not exist.
The letters in the words YES and NO can be printed in any case.
- YES and the required values $a_i$ , if the answer exists (if there are several answers, print any of them);
- NO if the answer does not exist.
The letters in the words YES and NO can be printed in any case.
输入输出样例
输入 #1
8 10 3 100 4 8 7 97 2 8 8 3 10 5 3 1000000000 9
输出 #1
YES 4 2 4 YES 55 5 5 35 NO NO YES 1 1 1 1 1 1 1 1 NO YES 3 1 1 YES 111111110 111111110 111111110 111111110 111111110 111111110 111111110 111111110 111111120
暂无题解
C++ 编辑器
输入
输出
可保存默认模板;新题优先使用已保存模板。
当前快捷键仅展示,暂不支持修改。
- 撤销
Ctrl / ⌘ + Z - 重做
Ctrl / ⌘ + Y - 查找
Ctrl / ⌘ + F - 全选
Ctrl / ⌘ + A - 复制
Ctrl / ⌘ + C - 剪切
Ctrl / ⌘ + X - 粘贴
Ctrl / ⌘ + V - 自动排版
工具栏排版按钮 - 草稿保存
编辑时自动保存到本机
历史
提交记录
状态说明时间源码
AI
作答助手
你好,我是作答助手。可以问思路、复杂度、样例含义或代码报错原因;不会直接给出完整 AC 代码。
确定要清空代码吗?
提交通过
评测结果:Accepted