QOJ.ac

QOJ

IDProblemSubmitterResultTimeMemoryLanguageFile sizeSubmit timeJudge time
#766985#9629. 小 C 的神秘图形OOBMABTRAMS#WA 11ms75852kbC++17529b2024-11-20 19:31:322024-11-20 19:31:33

Judging History

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

  • [2024-11-20 19:31:33]
  • 评测
  • 测评结果:WA
  • 用时:11ms
  • 内存:75852kb
  • [2024-11-20 19:31:32]
  • 提交

answer

#include<bits/stdc++.h>
using namespace std;
constexpr int N=1000013;
typedef long long ll;
typedef long double ld;
const ll INF=3e9;
vector<int>pf[N];
vector<int>suf[N];
vector<int>a[N];
int to[N],tt,f[N];
void solve(){
    int n;cin>>n;
    string s,t;
    cin>>s>>t;
    int ans=1;
    for(int i=0;i<n;i++)if(s[i]!='1'||t[i]!='1')ans=0;
    cout<<ans<<endl;
}

signed main(){
    ios::sync_with_stdio(false);
    cin.tie(nullptr);
    cout.tie(nullptr);
    int T=1;//cin>>T;
    while(T--) solve();
}

Details

Tip: Click on the bar to expand more detailed information

Test #1:

score: 100
Accepted
time: 11ms
memory: 75852kb

input:

96
122100012110202022211102020101110122101010001012220001000222210100222112111020002212000222012022
010112102102202201211121022102211110211010101020001021100101110202100010112221022001101222101102

output:

0

result:

ok single line: '0'

Test #2:

score: -100
Wrong Answer
time: 11ms
memory: 74276kb

input:

100
2101120010010021010112120010111111212001120112101221211001111101012021111111211111110120002210111111
1010111101111111121211011101011101111111011201111110112110001211101110200102102020021011111121221102

output:

0

result:

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