結果

問題 No.1994 Confusing Name
ユーザー tamatotamato
提出日時 2022-07-01 21:28:01
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 547 ms / 2,000 ms
コード長 533 bytes
コンパイル時間 209 ms
コンパイル使用メモリ 82,296 KB
実行使用メモリ 153,568 KB
最終ジャッジ日時 2024-05-04 15:33:14
合計ジャッジ時間 8,758 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 48 ms
51,712 KB
testcase_01 AC 48 ms
52,096 KB
testcase_02 AC 47 ms
52,480 KB
testcase_03 AC 46 ms
51,712 KB
testcase_04 AC 46 ms
51,968 KB
testcase_05 AC 60 ms
65,408 KB
testcase_06 AC 71 ms
71,680 KB
testcase_07 AC 48 ms
60,672 KB
testcase_08 AC 71 ms
69,904 KB
testcase_09 AC 68 ms
71,296 KB
testcase_10 AC 58 ms
66,432 KB
testcase_11 AC 57 ms
65,664 KB
testcase_12 AC 343 ms
121,432 KB
testcase_13 AC 415 ms
151,204 KB
testcase_14 AC 418 ms
149,456 KB
testcase_15 AC 364 ms
133,392 KB
testcase_16 AC 319 ms
140,160 KB
testcase_17 AC 352 ms
132,224 KB
testcase_18 AC 448 ms
153,160 KB
testcase_19 AC 449 ms
153,412 KB
testcase_20 AC 529 ms
153,568 KB
testcase_21 AC 182 ms
88,696 KB
testcase_22 AC 137 ms
84,480 KB
testcase_23 AC 547 ms
133,448 KB
testcase_24 AC 534 ms
135,284 KB
testcase_25 AC 318 ms
126,720 KB
testcase_26 AC 179 ms
101,108 KB
testcase_27 AC 384 ms
123,744 KB
testcase_28 AC 287 ms
126,852 KB
testcase_29 AC 106 ms
83,456 KB
testcase_30 AC 296 ms
126,720 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

mod = 998244353


def main():
    import sys
    input = sys.stdin.readline

    N = int(input())
    S = []
    for _ in range(N):
        S.append(input().rstrip('\n'))

    T = {}
    for s in S:
        for i in range(len(s)):
            t = s[:i] + "$" + s[i+1:]
            if t not in T:
                T[t] = 0
            T[t] += 1

    for s in S:
        ans = 0
        for i in range(len(s)):
            t = s[:i] + "$" + s[i+1:]
            ans += T[t] - 1
        print(ans)


if __name__ == '__main__':
    main()
0