QOJ.ac

QOJ

IDProblemSubmitterResultTimeMemoryLanguageFile sizeSubmit timeJudge time
#743430#9629. 小 C 的神秘图形BaseAI#TL 3ms3836kbC++23384b2024-11-13 19:12:282024-11-13 19:12:29

Judging History

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

  • [2024-11-13 19:12:29]
  • 评测
  • 测评结果:TL
  • 用时:3ms
  • 内存:3836kb
  • [2024-11-13 19:12:28]
  • 提交

answer

#include <bits/stdc++.h>

using namespace std;

int a(int n, string n1, string n2)
{
    if (n1[0]=='1' || n2[0]=='1') {
        if (n == 1) { return 1; }
        else { return a(n-1, n1.substr(1), n2.substr(1)); }
    } else {
        return 0;
    }
}

int main()
{
    int n; cin >> n;
    string n1, n2;
    cin >> n1 >> n2;
    cout << a(n, n1, n2) << endl;
}

Details

Tip: Click on the bar to expand more detailed information

Test #1:

score: 100
Accepted
time: 0ms
memory: 3532kb

input:

96
122100012110202022211102020101110122101010001012220001000222210100222112111020002212000222012022
010112102102202201211121022102211110211010101020001021100101110202100010112221022001101222101102

output:

0

result:

ok single line: '0'

Test #2:

score: 0
Accepted
time: 0ms
memory: 3608kb

input:

100
2101120010010021010112120010111111212001120112101221211001111101012021111111211111110120002210111111
1010111101111111121211011101011101111111011201111110112110001211101110200102102020021011111121221102

output:

1

result:

ok single line: '1'

Test #3:

score: 0
Accepted
time: 3ms
memory: 3836kb

input:

99964
101002101200222202100122011200221000211122121100220122120000211012222202201100020022111022100011102001110202020022221021121112222001000000222111110122022101020102020201020220110010111110212211102001211220111201120022022100121110122112202222122121210221211011100112021210022011100222220001021120...

output:

0

result:

ok single line: '0'

Test #4:

score: -100
Time Limit Exceeded

input:

99951
210210010000101201101221221111222021121110110111211121000221100101112021101122111212111111221211211111110020101222110220011121002221000101112210111111211101012112001111111022111210112111101222121112021110101121011122120022111101110100010121000001112102211211211110111101122121110011112111220101...

output:


result: