結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 6 ms
19,032 KB
testcase_01 AC 6 ms
19,080 KB
testcase_02 AC 5 ms
19,084 KB
testcase_03 AC 6 ms
19,172 KB
testcase_04 AC 5 ms
19,072 KB
testcase_05 AC 12 ms
19,108 KB
testcase_06 AC 21 ms
19,232 KB
testcase_07 AC 8 ms
19,024 KB
testcase_08 AC 17 ms
19,204 KB
testcase_09 AC 23 ms
19,184 KB
testcase_10 AC 13 ms
19,176 KB
testcase_11 AC 12 ms
19,108 KB
testcase_12 AC 1,537 ms
22,984 KB
testcase_13 AC 1,807 ms
22,992 KB
testcase_14 AC 1,689 ms
22,780 KB
testcase_15 AC 1,322 ms
22,160 KB
testcase_16 AC 1,147 ms
21,780 KB
testcase_17 AC 1,311 ms
22,152 KB
testcase_18 AC 1,786 ms
23,012 KB
testcase_19 AC 1,760 ms
22,992 KB
testcase_20 AC 1,773 ms
22,840 KB
testcase_21 AC 294 ms
19,916 KB
testcase_22 AC 138 ms
19,420 KB
testcase_23 AC 1,554 ms
22,860 KB
testcase_24 AC 1,574 ms
22,760 KB
testcase_25 AC 913 ms
21,516 KB
testcase_26 AC 419 ms
20,312 KB
testcase_27 AC 1,429 ms
22,632 KB
testcase_28 AC 1,008 ms
21,680 KB
testcase_29 AC 104 ms
19,424 KB
testcase_30 AC 1,114 ms
21,904 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