結果

問題 No.1994 Confusing Name
ユーザー otoshigootoshigo
提出日時 2022-07-01 21:40:15
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 684 ms / 2,000 ms
コード長 1,120 bytes
コンパイル時間 2,365 ms
コンパイル使用メモリ 214,612 KB
実行使用メモリ 55,020 KB
最終ジャッジ日時 2024-11-26 04:24:32
合計ジャッジ時間 11,911 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 8 ms
19,072 KB
testcase_01 AC 8 ms
19,084 KB
testcase_02 AC 10 ms
18,960 KB
testcase_03 AC 9 ms
18,944 KB
testcase_04 AC 9 ms
18,944 KB
testcase_05 AC 11 ms
19,396 KB
testcase_06 AC 14 ms
19,664 KB
testcase_07 AC 10 ms
19,152 KB
testcase_08 AC 12 ms
19,356 KB
testcase_09 AC 15 ms
19,712 KB
testcase_10 AC 11 ms
19,328 KB
testcase_11 AC 11 ms
19,328 KB
testcase_12 AC 433 ms
41,216 KB
testcase_13 AC 633 ms
52,352 KB
testcase_14 AC 631 ms
53,932 KB
testcase_15 AC 500 ms
48,324 KB
testcase_16 AC 429 ms
44,672 KB
testcase_17 AC 507 ms
47,728 KB
testcase_18 AC 669 ms
54,528 KB
testcase_19 AC 684 ms
54,664 KB
testcase_20 AC 665 ms
55,020 KB
testcase_21 AC 100 ms
25,852 KB
testcase_22 AC 47 ms
22,272 KB
testcase_23 AC 532 ms
47,756 KB
testcase_24 AC 546 ms
46,336 KB
testcase_25 AC 319 ms
36,864 KB
testcase_26 AC 142 ms
28,148 KB
testcase_27 AC 484 ms
44,256 KB
testcase_28 AC 330 ms
38,364 KB
testcase_29 AC 38 ms
21,940 KB
testcase_30 AC 375 ms
40,144 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;
    map<pair<string,string>,int>mp;
    rep(i,n){
        cin>>S[i];
        int l=S[i].size();
        rep(j,l){
            mp[make_pair(S[i].substr(0,j),S[i].substr(j+1,l-j+1))]++;
        }
    }
    rep(i,n){
        int l=S[i].size(),cnt=0;
        rep(j,l){
            cnt+=mp[make_pair(S[i].substr(0,j),S[i].substr(j+1,l-j+1))];
        }
        cnt-=l;
        cout<<cnt<<"\n";
    }
}
0