QOJ.ac

QOJ

ID题目提交者结果用时内存语言文件大小提交时间测评时间
#759655#9354. Justifying the ConjectureOOBMABTRAMS#WA 0ms3668kbC++17438b2024-11-18 10:57:572024-11-18 10:57:59

Judging History

你现在查看的是最新测评结果

  • [2024-11-18 10:57:59]
  • 评测
  • 测评结果:WA
  • 用时:0ms
  • 内存:3668kb
  • [2024-11-18 10:57:57]
  • 提交

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