結果

問題 No.1994 Confusing Name
ユーザー rlangevinrlangevin
提出日時 2023-01-19 00:32:12
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 744 ms / 2,000 ms
コード長 411 bytes
コンパイル時間 379 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 164,808 KB
最終ジャッジ日時 2024-06-12 00:06:27
合計ジャッジ時間 12,444 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
54,272 KB
testcase_01 AC 45 ms
53,760 KB
testcase_02 AC 47 ms
54,016 KB
testcase_03 AC 47 ms
53,888 KB
testcase_04 AC 46 ms
53,632 KB
testcase_05 AC 69 ms
69,760 KB
testcase_06 AC 93 ms
77,824 KB
testcase_07 AC 59 ms
65,024 KB
testcase_08 AC 81 ms
74,752 KB
testcase_09 AC 95 ms
78,220 KB
testcase_10 AC 81 ms
74,240 KB
testcase_11 AC 71 ms
69,760 KB
testcase_12 AC 537 ms
128,100 KB
testcase_13 AC 664 ms
160,816 KB
testcase_14 AC 665 ms
158,100 KB
testcase_15 AC 554 ms
148,392 KB
testcase_16 AC 485 ms
141,684 KB
testcase_17 AC 536 ms
148,112 KB
testcase_18 AC 715 ms
164,280 KB
testcase_19 AC 744 ms
164,628 KB
testcase_20 AC 730 ms
164,808 KB
testcase_21 AC 204 ms
97,580 KB
testcase_22 AC 138 ms
83,500 KB
testcase_23 AC 629 ms
142,164 KB
testcase_24 AC 614 ms
140,660 KB
testcase_25 AC 407 ms
119,860 KB
testcase_26 AC 237 ms
106,476 KB
testcase_27 AC 576 ms
134,236 KB
testcase_28 AC 432 ms
125,720 KB
testcase_29 AC 130 ms
84,816 KB
testcase_30 AC 470 ms
132,824 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
readline = sys.stdin.readline
from collections import *


N = int(readline())
S = [None] * N
D = defaultdict(int)
for i in range(N):
    S[i] = readline().rstrip()
    for j in range(len(S[i])):
        a, b = S[i][:j], S[i][j + 1:]
        D[(a, b)] += 1

for i in range(N):
    ans = 0
    for j in range(len(S[i])):
        a, b = S[i][:j], S[i][j + 1:]
        ans += D[(a, b)] - 1
    print(ans)
0