# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
951853 | Saul0906 | PIN (CEOI10_pin) | C++14 | 1104 ms | 89680 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
#define rep(a,b,c) for(int a=b; a<c; a++)
#define repa(a,b) for(auto a:b)
#define fi first
#define se second
#define pii pair<int, int>
#define ll long long
#define endl "\n"
using namespace std;
int main(){
ios_base::sync_with_stdio(false);
cin.tie(0);
cout.tie(0);
int n, d, ans=0;
cin>>n>>d;
string s[n], t;
map<string,int> ss;
rep(i,0,n){
cin>>s[i];
t=s[i];
rep(k,0,4){
rep(j,0,10) if(j+'0'!=s[i][k]) t[k]=j+'0', ans+=ss[t];
rep(j,0,26) if(j+'a'!=s[i][k]) t[k]=j+'a', ans+=ss[t];
t[k]=s[i][k];
}
ss[s[i]]++;
}
cout<<ans<<endl;
}
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |