# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
379775 | FatihSolak | Lozinke (COCI17_lozinke) | C++17 | 547 ms | 16876 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>
#define N 20005
using namespace std;
map<string,int> mp;
string s[N];
void solve(){
int n;
cin >> n;
int ans = 0;
for(int i=0;i<n;i++){
cin >> s[i];
mp[s[i]]++;
}
for(int i=0;i<n;i++){
set<string> st;
for(int j=0;j<s[i].size();j++){
string tmp = "";
for(int c = j;c<s[i].size();c++){
tmp += s[i][c];
st.insert(tmp);
}
}
for(auto u:st){
ans += mp[u];
}
}
cout << ans-n;
}
int main(){
ios_base::sync_with_stdio(false);
cin.tie(nullptr);
#ifdef Local
freopen("in.txt","r",stdin);
freopen("out.txt","w",stdout);
#endif
int t=1;
//cin>>t;
while(t--){
solve();
}
#ifdef Local
cout<<endl<<fixed<<setprecision(2)<<1000.0 * clock() / CLOCKS_PER_SEC<< " milliseconds ";
#endif
}
Compilation message (stderr)
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |