mirror of
https://git.sb/baoshuo/OI-codes.git
synced 2024-12-04 09:36:28 +00:00
T258480 [Aya Round 1 C] 文文的构造游戏
https://www.luogu.com.cn/record/82793996
This commit is contained in:
parent
06e8fe6606
commit
dd86807035
29
Luogu/T258480/T258480.cpp
Normal file
29
Luogu/T258480/T258480.cpp
Normal file
@ -0,0 +1,29 @@
|
|||||||
|
#include <iostream>
|
||||||
|
|
||||||
|
using std::cin;
|
||||||
|
using std::cout;
|
||||||
|
const char endl = '\n';
|
||||||
|
|
||||||
|
int t;
|
||||||
|
|
||||||
|
int main() {
|
||||||
|
std::ios::sync_with_stdio(false);
|
||||||
|
cin.tie(nullptr);
|
||||||
|
|
||||||
|
cin >> t;
|
||||||
|
|
||||||
|
while (t--) {
|
||||||
|
long long s;
|
||||||
|
int m;
|
||||||
|
|
||||||
|
cin >> s >> m;
|
||||||
|
|
||||||
|
if (s % 2 || m == 1) {
|
||||||
|
cout << -1 << endl;
|
||||||
|
} else {
|
||||||
|
cout << 2 << ' ' << (s >> 1) << ' ' << (s >> 1) << endl;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
return 0;
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user