QOJ.ac
QOJ
ID | 题目 | 提交者 | 结果 | 用时 | 内存 | 语言 | 文件大小 | 提交时间 | 测评时间 |
---|---|---|---|---|---|---|---|---|---|
#605383 | #9354. Justifying the Conjecture | Theliser# | WA | 0ms | 3552kb | C++20 | 472b | 2024-10-02 16:56:07 | 2024-10-02 16:56:08 |
Judging History
answer
#include <bits/stdc++.h>
using namespace std;
int main() {
ios::sync_with_stdio(false);
cin.tie(nullptr);
int T;
cin >> T;
while (T --) {
int n;
cin >> n;
if (n <= 5) {
cout << -1 << '\n';
return 0;
}
if (n % 2 == 0) {
cout << 2 << ' ' << n - 2 << '\n';
} else {
cout << 3 << ' ' << n - 3 << '\n';
}
}
return 0;
}
详细
Test #1:
score: 0
Wrong Answer
time: 0ms
memory: 3552kb
input:
3 4 6 7
output:
-1
result:
wrong output format Unexpected end of file - int64 expected