結果

問題 No.1994 Confusing Name
ユーザー otoshigootoshigo
提出日時 2022-07-01 21:37:36
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 1,832 ms / 2,000 ms
コード長 1,107 bytes
コンパイル時間 2,156 ms
コンパイル使用メモリ 209,504 KB
実行使用メモリ 23,008 KB
最終ジャッジ日時 2024-11-26 04:19:14
合計ジャッジ時間 26,665 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 7 ms
19,056 KB
testcase_01 AC 6 ms
18,944 KB
testcase_02 AC 7 ms
18,976 KB
testcase_03 AC 7 ms
18,944 KB
testcase_04 AC 5 ms
19,072 KB
testcase_05 AC 13 ms
19,072 KB
testcase_06 AC 24 ms
19,012 KB
testcase_07 AC 9 ms
19,000 KB
testcase_08 AC 18 ms
19,056 KB
testcase_09 AC 24 ms
19,052 KB
testcase_10 AC 13 ms
19,064 KB
testcase_11 AC 13 ms
19,068 KB
testcase_12 AC 1,548 ms
23,008 KB
testcase_13 AC 1,831 ms
22,936 KB
testcase_14 AC 1,752 ms
22,824 KB
testcase_15 AC 1,361 ms
22,084 KB
testcase_16 AC 1,184 ms
21,800 KB
testcase_17 AC 1,356 ms
22,028 KB
testcase_18 AC 1,805 ms
22,836 KB
testcase_19 AC 1,832 ms
22,960 KB
testcase_20 AC 1,831 ms
22,916 KB
testcase_21 AC 297 ms
19,980 KB
testcase_22 AC 140 ms
19,572 KB
testcase_23 AC 1,595 ms
22,652 KB
testcase_24 AC 1,610 ms
22,940 KB
testcase_25 AC 914 ms
21,308 KB
testcase_26 AC 434 ms
20,288 KB
testcase_27 AC 1,540 ms
22,436 KB
testcase_28 AC 1,016 ms
21,464 KB
testcase_29 AC 109 ms
19,328 KB
testcase_30 AC 1,151 ms
22,060 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
using ll = long long;
#define rep(i,n) for (int i = 0; i < n; i++)
#define rrep(i,n) for (int i = n-1; i >= 0; i--)
#define rep2(i,a,b) for (int i = a; i < b; i++)
#define rrep2(i,a,b) for (int i = a-1; i >= b; i--)
#define rep3(i,a,b,c) for (int i = a; i < b; i+=c)
#define rrep3(i,a,b,c) for (int i = a-1; i >= b; i-=c)
#define all(v) v.begin(),v.end()
#define rall(v) v.rbegin(),v.rend()
template<class T> bool chmax(T &a, T b){if (a < b){a = b;return true;} else return false;}
template<class T> bool chmin(T &a, T b){if (a > b){a = b;return true;} else return false;}

int n;
string S[500010];
int main(){
    ios::sync_with_stdio(false);
    cin.tie(nullptr);
    cin>>n;
    set<string>se;
    rep(i,n){
        cin>>S[i];
        se.insert(S[i]);
    }
    rep(i,n){
        int l=S[i].size(),cnt=0;
        rep(j,l){
            rep(k,26){
                if(S[i][j]=='a'+k)continue;
                string t=S[i].substr(0,j)+char('a'+k)+S[i].substr(j+1,l-j-1);
                cnt+=se.count(t);
            }
        }
        cout<<cnt<<"\n";
    }
}
0