結果

問題 No.1994 Confusing Name
ユーザー nohakai3nohakai3
提出日時 2022-07-28 21:05:12
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 857 ms / 2,000 ms
コード長 341 bytes
コンパイル時間 75 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 40,272 KB
最終ジャッジ日時 2024-07-18 11:28:55
合計ジャッジ時間 12,910 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 24 ms
10,752 KB
testcase_01 AC 24 ms
10,752 KB
testcase_02 AC 24 ms
10,752 KB
testcase_03 AC 26 ms
10,752 KB
testcase_04 AC 25 ms
10,880 KB
testcase_05 AC 32 ms
11,008 KB
testcase_06 AC 37 ms
11,136 KB
testcase_07 AC 27 ms
10,752 KB
testcase_08 AC 33 ms
11,136 KB
testcase_09 AC 38 ms
11,392 KB
testcase_10 AC 31 ms
11,008 KB
testcase_11 AC 33 ms
11,008 KB
testcase_12 AC 659 ms
32,884 KB
testcase_13 AC 800 ms
39,116 KB
testcase_14 AC 807 ms
39,544 KB
testcase_15 AC 680 ms
36,052 KB
testcase_16 AC 576 ms
33,788 KB
testcase_17 AC 660 ms
35,808 KB
testcase_18 AC 846 ms
39,952 KB
testcase_19 AC 829 ms
39,936 KB
testcase_20 AC 857 ms
40,272 KB
testcase_21 AC 187 ms
16,784 KB
testcase_22 AC 100 ms
13,776 KB
testcase_23 AC 746 ms
36,264 KB
testcase_24 AC 702 ms
35,020 KB
testcase_25 AC 449 ms
25,804 KB
testcase_26 AC 245 ms
18,300 KB
testcase_27 AC 670 ms
33,904 KB
testcase_28 AC 495 ms
33,980 KB
testcase_29 AC 85 ms
13,724 KB
testcase_30 AC 545 ms
33,756 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict as dfd

n=int(input())
d=dfd(int)
user=[]
for _ in [0]*n:
    s=input()
    user.append(s)
    for i in range(len(s)):
        t="".join([s[:i],".",s[(i+1):]])
        d[t]+=1

for s in user:
    ans=0
    for i in range(len(s)):
        t="".join([s[:i],".",s[(i+1):]])
        ans+=d[t]-1
    print(ans)
0