题解
2024-02-24 17:50:22
发布于:广东
2阅读
0回复
0点赞
#include<bits/stdc++.h>
using namespace std;
int main()
{
int n;
cin>>n;
if((n-1-1)%3!=0)
{
cout<<"YES"<<endl<<"1 1 "<<n-1-1;
}
else if((n-1-2)%3!=0)
{
cout<<"YES"<<endl<<"1 2 "<<n-1-2;
}
else
{
cout<<"NO";
}
return 0;
}
这里空空如也
有帮助,赞一个