結果
問題 | No.1994 Confusing Name |
ユーザー | keisuke6 |
提出日時 | 2022-07-01 21:45:19 |
言語 | C++23 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 498 bytes |
コンパイル時間 | 2,881 ms |
コンパイル使用メモリ | 255,320 KB |
実行使用メモリ | 272,288 KB |
最終ジャッジ日時 | 2024-05-04 16:05:12 |
合計ジャッジ時間 | 9,173 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
13,756 KB |
testcase_01 | AC | 2 ms
6,940 KB |
testcase_02 | AC | 2 ms
6,940 KB |
testcase_03 | AC | 2 ms
6,940 KB |
testcase_04 | AC | 1 ms
6,944 KB |
testcase_05 | AC | 24 ms
7,936 KB |
testcase_06 | AC | 55 ms
13,184 KB |
testcase_07 | AC | 10 ms
6,948 KB |
testcase_08 | AC | 40 ms
10,880 KB |
testcase_09 | AC | 61 ms
14,336 KB |
testcase_10 | AC | 27 ms
8,448 KB |
testcase_11 | AC | 23 ms
8,064 KB |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | AC | 1,245 ms
120,320 KB |
testcase_22 | AC | 513 ms
59,904 KB |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | TLE | - |
testcase_26 | -- | - |
testcase_27 | -- | - |
testcase_28 | -- | - |
testcase_29 | -- | - |
testcase_30 | -- | - |
ソースコード
#include <bits/stdc++.h> using namespace std; #define int short signed main(){ int N; cin>>N; map<string,int> s; vector<string> S(N); for(int i=0;i<N;i++){ cin>>S[i]; s[S[i]]++; } vector<string> T=S; for(int i=0;i<N;i++){ int ans = 0; for(int k=0;k<S[i].size();k++)for(int j=0;j<26;j++){ if(S[i][k] == (char)('a'+j)) continue; S[i][k] = (char)('a'+j); ans += s[S[i]]; S[i] = T[i]; } cout<<ans<<endl; } }