1 条题解
-
0118爱好者 (mengqingyu) LV 10 @ 2024-8-30 21:24:24
勿抄
#include<algorithm> #include<cmath> #include<cstdio> #include<cstring> #include<iomanip> #include<iostream> #include<queue> #include<string> #include<vector> using namespace std; const int INF=0x3f3f3f3f; const int N=1e5+10; const double eps=1e-5; int read() { char ch=getchar(); int x=0,f=1; while(ch<'0'||ch>'9'){if(ch=='-')f=-1;ch=getchar();} while(ch>='0'&&ch<='9'){x=(x<<3)+(x<<1)+ch-48,ch=getchar();} return x*f; } int n; signed main() { n=read(); if(n&1) puts("NO"); else if(n%6==0) printf("%d 0",n); else if(n%6==2) printf("%d 2",n+2); else printf("%d 1",n+1); return 0; }
- 1
信息
- ID
- 1965
- 时间
- 1000ms
- 内存
- 256MiB
- 难度
- 10
- 标签
- (无)
- 递交数
- 6
- 已通过
- 4
- 上传者