15 条题解
-
4
#include <bits/stdc++.h> using namespace std; int main(){ int a,z,x,c,v; cin>>a; if(a%2==0 and a<=12 and a>4) z=1; else z=0; if(a%2==0 or(a>4 and a<12) or (a%2==0 and a>4 and a<12)) x=1; else x=0; if((a%2==!0 and (a>12 or a<=4)) or (a%2==0 and a<=12 and a>4)) c=0; else c=1; if(a%2==!0 and (a<=4 or a>=12)) v=1; else v=0; cout<<z<<" "<<x<<" "<<c<<" "<<v; return 0; }
-
2
#include<bits/stdc++.h> using namespace std; int main(){ int x; cin>>x; if(x%20 and x>4 and x<=12){ cout<<"1";}else{ cout<<"0";} if(x%20 or (x>4 and x<=12)){ cout<<" "<<"1";}else{ cout<<" "<<"0";} if((x%2==0 and !(x>4 and x<=12))or (x%2!=0 and x>4 and x<=12)){ cout<<" "<<"1";}else{ cout<<" "<<"0";} if(x%2!=0 and !(x>4 and x<=12)){ cout<<" "<<"1";}else{ cout<<" "<<"0";} return 0; }
-
0
#include<bits/stdc++.h> using namespace std; int main(){ int n; cin>>n; if(n%2==0 && (n>4 && n<=12)) cout<<1<<" "; else cout<<0<<" ";
if(n%2==0 || (n>4 && n<=12)) cout<<1<<" "; else cout<<0<<" "; if((n%2==0 && (n<=4 || n>12)) || (n%2!=0 && (n>4 && n<=12))) cout<<1<<" "; else cout<<0<<" "; if(n%2!=0 && (n<=4 || n>12)) cout<<1<<" "; else cout<<0<<" "; return 0;
}
-
0
#include<bits/stdc++.h> using namespace std; int main(){ int a,b,c,d,e; cin>>a; if(a%2==0 and a>4 and a<=12) b=1; else b=0; if(a%2==0 or a>4 and a<=12) c=1; else c=0; if(a%2==0 and a<4 and a>12) d=1; if(a>4 and a<=12 and a%2!=0) d=1; else d=0; if(a%2!=0 and a<4 or a>12) e=1; else e=0; cout<<b<<" "<<c<<" "<<d<<" "<<e; return 0; }
-
0
#include<bits/stdc++.h> using namespace std; int main(){ int n,m,k=0; cin>>n; if(n<=12 || n%20){ if(n<=12 && n%20){ cout<<1<<" "; cout<<1<<" "; cout<<0<<" "; } else{ cout<<0<<" "; cout<<1<<" "; cout<<1<<" "; } cout<<0<<" "; } else{ cout<<0<<" "<<0<<" "<<0<<" "<<1; }
return 0;
}只有80,到底哪里错了!!!
-
0
#include using namespace std; int main(void) { int x; cin>>x; bool b1=(x%2==0); bool b2=(x>4&&x<=12); if(b1&&b2) cout<<"1"<<" "; else cout<<"0"<<" "; if(b1||b2) cout<<"1"<<" "; else cout<<"0"<<" "; if((b1&&!b2)||(!b1&&b2)) cout<<"1"<<" "; else cout<<"0"<<" "; if(!b1&&!b2) cout<<"1"; else cout<<"0"; }
-
0
#include using namespace std; int main(void) { int x; cin>>x; bool b1=(x%2==0); bool b2=(x>4&&x<=12); if(b1&&b2) cout<<"1"<<" "; else cout<<"0"<<" "; if(b1||b2) cout<<"1"<<" "; else cout<<"0"<<" "; if((b1&&!b2)||(!b1&&b2)) cout<<"1"<<" "; else cout<<"0"<<" "; if(!b1&&!b2) cout<<"1"; else cout<<"0"; }
-
0
#include <bits/stdc++.h> using namespace std; int main(){ int a,z,x,c,v; cin>>a; if(a%2==0 and a<=12 and a>4) z=1; else z=0; if(a%2==0 or(a>4 and a<12) or (a%2==0 and a>4 and a<12)) x=1; else x=0; if((a%2==!0 and (a>12 or a<=4)) or (a%2==0 and a<=12 and a>4)) c=0; else c=1; if(a%2==!0 and (a<=4 or a>=12)) v=1; else v=0; cout<<z<<" "<<x<<" "<<c<<" "<<v; return 0;
-
-1
#include<bits/stdc++.h> using namespace std; int main(){ int x; cin>>x; if(x%20 and x>4 and x<=12){ cout<<"1";}else{ cout<<"0";} if(x%20 or (x>4 and x<=12)){ cout<<" "<<"1";}else{ cout<<" "<<"0";} if((x%2==0 and !(x>4 and x<=12))or (x%2!=0 and x>4 and x<=12)){ cout<<" "<<"1";}else{ cout<<" "<<"0";} if(x%2!=0 and !(x>4 and x<=12)){ cout<<" "<<"1";}else{ cout<<" "<<"0";} return 0; }
-
-1
#include<bits/stdc++.h> using namespace std; int main(){ int a,b,c,d,e; cin>>a; if(a%20 and a>4 and a<=12){ cout<<"1"<<" "; } else{ cout<<"0"<<" "; } if(a%20 or (a>4 and a<12) or (a%20 and a>4 and a<=12)){ cout<<"1"<<" "; } else{ cout<<"0"<<" "; } if((a%2!=0 and (a>4 and a<=12)) or (a%20 and (a<4 or a>12))){ cout<<"1"<<" "; } else{ cout<<"0"<<" "; } if(a%2!=0 and (a<4 or a>12)){ cout<<"1"; } else{ cout<<"0"; } }
-
-2
#include <bits/stdc++.h> using namespace std; int main(){ int a,z,x,c,v; cin>>a; if(a%20 and a<=12 and a>4) z=1; else z=0; if(a%20 or(a>4 and a<12) or (a%20 and a>4 and a<12)) x=1; else x=0; if((a%2!0 and (a>12 or a<=4)) or (a%20 and a<=12 and a>4)) c=0; else c=1; if(a%2!0 and (a<=4 or a>=12)) v=1; else v=0; cout<<z<<" "<<x<<" "<<c<<" "<<v; return 0; }
-
-2
#include <bits/stdc++.h> using namespace std; int main(){ int a,z,x,c,v; cin>>a; if(a%2==0 and a<=12 and a>4) z=1; else z=0; if(a%2==0 or(a>4 and a<12) or (a%2==0 and a>4 and a<12)) x=1; else x=0; if((a%2==!0 and (a>12 or a<=4)) or (a%2==0 and a<=12 and a>4)) c=0; else c=1; if(a%2==!0 and (a<=4 or a>=12)) v=1; else v=0; cout<<z<<" "<<x<<" "<<c<<" "<<v; return 0; }
-
-2
#include <bits/stdc++.h> using namespace std; int main(){ int a,z,x,c,v; cin>>a; if(a%2==0 and a<=12 and a>4) z=1; else z=0; if(a%2==0 or(a>4 and a<12) or (a%2==0 and a>4 and a<12)) x=1; else x=0; if((a%2==!0 and (a>12 or a<=4)) or (a%2==0 and a<=12 and a>4)) c=0; else c=1; if(a%2==!0 and (a<=4 or a>=12)) v=1; else v=0; cout<<z<<" "<<x<<" "<<c<<" "<<v; return 0; }
- 1
信息
- ID
- 617
- 时间
- 1000ms
- 内存
- 125MiB
- 难度
- 4
- 标签
- (无)
- 递交数
- 488
- 已通过
- 211
- 上传者