結果
問題 | No.1994 Confusing Name |
ユーザー | umezo |
提出日時 | 2022-07-02 01:42:48 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 573 bytes |
コンパイル時間 | 1,895 ms |
コンパイル使用メモリ | 210,648 KB |
実行使用メモリ | 249,888 KB |
最終ジャッジ日時 | 2024-05-04 20:15:56 |
合計ジャッジ時間 | 5,886 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
10,624 KB |
testcase_01 | AC | 1 ms
5,376 KB |
testcase_02 | AC | 2 ms
5,376 KB |
testcase_03 | AC | 1 ms
5,376 KB |
testcase_04 | AC | 1 ms
5,376 KB |
testcase_05 | AC | 23 ms
7,808 KB |
testcase_06 | AC | 54 ms
13,056 KB |
testcase_07 | AC | 11 ms
5,504 KB |
testcase_08 | AC | 39 ms
10,880 KB |
testcase_09 | AC | 58 ms
14,080 KB |
testcase_10 | AC | 25 ms
8,320 KB |
testcase_11 | AC | 23 ms
7,808 KB |
testcase_12 | TLE | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
testcase_26 | -- | - |
testcase_27 | -- | - |
testcase_28 | -- | - |
testcase_29 | -- | - |
testcase_30 | -- | - |
ソースコード
#define rep(i,n) for(int i=0;i<(int)(n);i++) #define ALL(v) v.begin(),v.end() typedef long long ll; #include<bits/stdc++.h> using namespace std; int main(){ ios::sync_with_stdio(false); std::cin.tie(nullptr); int n; cin>>n; vector<string> S(n); rep(i,n) cin>>S[i]; map<string,int> M; rep(i,n) M[S[i]]++; rep(i,n){ int a=S[i].size(); int ans=0; rep(j,a){ string s=S[i]; rep(k,26){ if(k==S[i][j]-'a') continue; s[j]=char('a'+k); ans+=M[s]; } } cout<<ans<<endl; } return 0; }