# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
472760 | MamdouhN | Lozinke (COCI17_lozinke) | C++14 | 1090 ms | 6556 KiB |
This submission is migrated from previous version of oj.uz, which used different machine for grading. This submission may have different result if resubmitted.
#include<bits/stdc++.h>
using namespace std;
#define int long long
#define endl "\n"
int n,ans;
string password[200002];
void check(string a,string b)
{
int sizeofb = b.size();
for(int i = 0;i<a.size();i++)
{
if(i+b.size()>a.size())break;
if(a[i]==b[0])
{
int x=i;
int j=0;
int sz=0;
while(a[x]==b[j]&&x<a.size()&&j<sizeofb)
{
sz++;
j++;
x++;
}
if(sz==sizeofb)
{
ans++;
return;
}
}
}
}
main()
{
cin>>n;
for(int i=0;i<n;i++)cin>>password[i];
for(int i=0;i<n;i++)
{
for(int j=0;j<n;j++)
{
if(j==i)continue;
if(password[j].size()>password[i].size())continue;
//cout<<password[i]<<" "<<password[j]<<endl;
check(password[i],password[j]);
}
}
cout<<ans<<endl;
}
Compilation message (stderr)
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |