Submission #953595


Source Code Expand

# include <stdio.h>
# include <bits/stdc++.h>
using namespace std;
# define fi cin
# define fo cout
# define x first
# define y second
# define ll long long
# define IOS ios_base :: sync_with_stdio(0);cin.tie(0)
# define p(v) cerr << #v << " = " << v << '\n'
# define p2(v) cerr << #v << " = " << (complex < int > (v.x,v.y)) << '\n'
# define vi vector < int >
# define vll vector < ll >
# define pii pair < int , int >
# define mp make_pair
int main(void)
{
    #ifdef CF
    freopen("input","r",stdin);
    #endif // CF
    srand(time(0));
    fo << fixed << setprecision(7);
    cerr << fixed << setprecision(7);
    string a,b;
    int n;
    fi>>n;
    static char c[1 << 20];
    fi>>a>>b;
    for (int i = max(a.length(),b.length());i <= a.length() + b.length();++i)
    {
        for (int j = 1;j <= a.length();++j)
            c[j] = a[j - 1];
        for (int j = i - b.length() + 1;j <= i;++j)
            c[j] = b[j - (i - b.length() + 1)];
        int ok = 1;
        for (int j = 1;j <= a.length();++j)
            ok &= c[j] == a[j - 1];
        for (int j = i - b.length() + 1;j <= i;++j)
            ok &= c[j] == b[j - (i - b.length() + 1)];
        if (ok) return fo << i << '\n',0;
    }
    cerr << "Time elapsed :" << clock() * 1000.0 / CLOCKS_PER_SEC << " ms" << '\n';
    return 0;
}

Submission Info

Submission Time
Task A - Prefix and Suffix
User reality
Language C++14 (GCC 5.4.1)
Score 200
Code Size 1349 Byte
Status AC
Exec Time 3 ms
Memory 256 KB

Judge Result

Set Name Sample All
Score / Max Score 0 / 0 200 / 200
Status
AC × 3
AC × 9
Set Name Test Cases
Sample 0_00.txt, 0_01.txt, 0_02.txt
All 0_00.txt, 0_01.txt, 0_02.txt, 1_00.txt, 1_01.txt, 1_02.txt, 1_03.txt, 1_04.txt, 1_05.txt
Case Name Status Exec Time Memory
0_00.txt AC 3 ms 256 KB
0_01.txt AC 3 ms 256 KB
0_02.txt AC 3 ms 256 KB
1_00.txt AC 3 ms 256 KB
1_01.txt AC 3 ms 256 KB
1_02.txt AC 3 ms 256 KB
1_03.txt AC 3 ms 256 KB
1_04.txt AC 3 ms 256 KB
1_05.txt AC 3 ms 256 KB