QOJ.ac
QOJ
ID | 题目 | 提交者 | 结果 | 用时 | 内存 | 语言 | 文件大小 | 提交时间 | 测评时间 |
---|---|---|---|---|---|---|---|---|---|
#759655 | #9354. Justifying the Conjecture | OOBMABTRAMS# | WA | 0ms | 3668kb | C++17 | 438b | 2024-11-18 10:57:57 | 2024-11-18 10:57:59 |
Judging History
answer
#include<bits/stdc++.h>
using namespace std;
constexpr int N=1000013;
const int P=1e9+7;
typedef long long ll;
void solve() {
int n;
cin>>n;
if(n<=5) {
cout<<6<<'\n';
return;
}else {
int p=2+(n&1);
cout<<p<<' '<<n-p<<'\n';
}
}
signed main(){
ios::sync_with_stdio(false);
cin.tie(nullptr);
cout.tie(nullptr);
int T=1;cin>>T;
while(T--)solve();
}
詳細信息
Test #1:
score: 0
Wrong Answer
time: 0ms
memory: 3668kb
input:
3 4 6 7
output:
6 2 4 3 4
result:
wrong answer x + y != n