結果

問題 No.1994 Confusing Name
ユーザー roarisroaris
提出日時 2022-10-29 17:13:31
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 512 bytes
コンパイル時間 297 ms
コンパイル使用メモリ 82,400 KB
実行使用メモリ 92,088 KB
最終ジャッジ日時 2024-07-06 15:06:36
合計ジャッジ時間 7,460 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
64,900 KB
testcase_01 AC 44 ms
63,252 KB
testcase_02 AC 43 ms
63,556 KB
testcase_03 AC 36 ms
54,256 KB
testcase_04 AC 37 ms
54,676 KB
testcase_05 AC 69 ms
76,596 KB
testcase_06 AC 89 ms
76,680 KB
testcase_07 AC 60 ms
76,692 KB
testcase_08 AC 73 ms
76,608 KB
testcase_09 AC 86 ms
76,340 KB
testcase_10 AC 72 ms
76,428 KB
testcase_11 AC 70 ms
76,424 KB
testcase_12 AC 1,719 ms
92,052 KB
testcase_13 TLE -
testcase_14 TLE -
testcase_15 AC 1,790 ms
88,040 KB
testcase_16 AC 1,516 ms
86,456 KB
testcase_17 AC 1,712 ms
87,684 KB
testcase_18 TLE -
testcase_19 TLE -
testcase_20 TLE -
testcase_21 AC 424 ms
80,268 KB
testcase_22 AC 226 ms
77,872 KB
testcase_23 AC 1,829 ms
91,660 KB
testcase_24 AC 1,767 ms
91,772 KB
testcase_25 AC 1,179 ms
84,864 KB
testcase_26 AC 569 ms
81,044 KB
testcase_27 AC 1,624 ms
90,300 KB
testcase_28 AC 1,262 ms
85,540 KB
testcase_29 AC 210 ms
77,804 KB
testcase_30 AC 1,389 ms
85,992 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

N = int(input())
S = [input()[:-1] for _ in range(N)]
cnt = defaultdict(int)

for Si in S:
    cnt[Si] += 1

for Si in S:
    ans = 0
    
    for i in range(len(Si)):
        for j in range(26):
            if ord(Si[i])-ord('a')==j:
                continue
            
            T = list(Si)
            T[i] = chr(j+ord('a'))
            T = ''.join(T)
            
            if T in cnt:
                ans += cnt[T]
    
    print(ans)
0