9 条题解
-
2陈冕 (Chenman) LV 7 @ 2022-10-7 19:10:11
#include<bits/stdc++.h> using namespace std; int main(){ int x,y; cin>>x>>y; if(x>=-1&&x<=1&&y>=-1&&y<=1){ cout<<"yes"; }else{ cout<<"no"; } }
-
02024-5-26 20:53:10@
//禁止复制 #include<iostream> using namespace std; int main(){ int x,y; cin>>x>>y; if(x>=-1&&x<=1&&y>=-1&&y<=1){ cout<<"yes"; }else{ cout<<"no"; } }
-
02023-4-4 21:44:20@
#include<bits/stdc++.h> using namespace std; int main() { int a,b; cin>>a>>b; if(a>=-1&&a<=1&&b>=-1&&b<=1) cout<<"yes"; else cout<<"no"; return 0; }
-
02023-2-25 9:25:51@
*#include#include使用命名空间 std;int main(){int a;辛>>A;if(sqrt(a)*sqrt(a)==a){cout<<(sqrt)(a);}else{cout<<“No,Chen”;}返回 0;
} *
-
02023-2-25 9:24:09@
#include <iostream> #include <cmath> #include <iomanip> using namespace std; int main(){ int w; cin>>w; if(sqrt(w)*sqrt(w)==w){ cout <<sqrt(w); }else{ cout <<"No,Chen"; }
return 0;
}
-
-42022-7-2 19:39:25@
#include<stdio.h> #include<iostream> using namespace std; int main() { int a,b; cin>>a>>b; if((a0&&b1)||(a0&&b-1)||(a0&&b0)) { cout<<"yes"<<endl; }else if((a1&&b1)||(a1&&b-1)||(a1&&b0)) { cout<<"yes"<<endl; }else if((a==-1&&b1)||(a-1&&b==-1)||(a==-1&&b==0)) { cout<<"yes"<<endl; }else { cout<<"no"<<endl; } }
-
-52022-1-3 10:39:27@
#include <queue> #include <math.h> #include <stack> #include <stdio.h> #include <iostream> #include <vector> #include <iomanip> #include <string.h> #include <algorithm> using namespace std; #define LL long long const int N = 1e5 + 10; const int INF = 0x3f3f3f3f; int main() { int x,y; cin>>x>>y; if(x <= 1 && x >= -1 && y >= -1 && y <= 1) { cout <<"yes"; } else { cout <<"no"; } }
-
-62022-3-30 20:53:59@
#include<iostream>
using namespace std;
int main(){
int x,y; cin>>x>>y; if(x>=-1&&x<=1&&y>=-1&&y<=1){ cout<<"yes"; }else{ cout<<"no"; }
}
-
-62022-1-23 13:44:04@
#include <iostream> using namespace std; int main(){ int x,y; scanf("%d%d",&x,&y); if(x <= 1 && x >= -1 && y >= -1 && y <= 1) cout<<"yes"<<endl; else cout<<"no"<<endl; return 0; }
- 1
信息
- ID
- 855
- 时间
- 1000ms
- 内存
- 128MiB
- 难度
- 3
- 标签
- 递交数
- 423
- 已通过
- 229
- 上传者