QOJ.ac

QOJ

ID题目提交者结果用时内存语言文件大小提交时间测评时间
#796532#9629. 小 C 的神秘图形Catbiscuit#WA 0ms3596kbC++20253b2024-12-01 20:35:132024-12-01 20:35:13

Judging History

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

  • [2024-12-01 20:35:13]
  • 评测
  • 测评结果:WA
  • 用时:0ms
  • 内存:3596kb
  • [2024-12-01 20:35:13]
  • 提交

answer

#include<bits/stdc++.h>
#define int long long
using namespace std;
string a,s;
bool b1,b2;
int n;
signed main(){
	cin>>n;
	cin>>a>>s;
	for(int i=0;i<n;i++){
		if(a[i]=='1')b1=1;
		if(s[i]=='1')b2=1;
	}
	if(b1&&b2)cout<<1;
	else cout<<0;
}

详细

Test #1:

score: 0
Wrong Answer
time: 0ms
memory: 3596kb

input:

96
122100012110202022211102020101110122101010001012220001000222210100222112111020002212000222012022
010112102102202201211121022102211110211010101020001021100101110202100010112221022001101222101102

output:

1

result:

wrong answer 1st lines differ - expected: '0', found: '1'