結果

問題 No.1994 Confusing Name
ユーザー titan23titan23
提出日時 2022-07-01 22:33:08
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 419 bytes
コンパイル時間 942 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 87,808 KB
最終ジャッジ日時 2024-05-04 16:52:09
合計ジャッジ時間 8,318 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
64,808 KB
testcase_01 AC 44 ms
61,952 KB
testcase_02 AC 43 ms
61,696 KB
testcase_03 AC 35 ms
53,376 KB
testcase_04 AC 35 ms
53,760 KB
testcase_05 AC 64 ms
76,160 KB
testcase_06 AC 79 ms
76,432 KB
testcase_07 AC 65 ms
76,160 KB
testcase_08 AC 76 ms
76,160 KB
testcase_09 AC 88 ms
76,416 KB
testcase_10 AC 74 ms
76,160 KB
testcase_11 AC 76 ms
76,708 KB
testcase_12 AC 1,541 ms
86,600 KB
testcase_13 TLE -
testcase_14 TLE -
testcase_15 AC 1,763 ms
84,804 KB
testcase_16 AC 1,571 ms
83,792 KB
testcase_17 AC 1,713 ms
85,064 KB
testcase_18 TLE -
testcase_19 TLE -
testcase_20 TLE -
testcase_21 AC 413 ms
79,500 KB
testcase_22 AC 224 ms
77,984 KB
testcase_23 AC 1,775 ms
87,704 KB
testcase_24 AC 1,706 ms
86,332 KB
testcase_25 AC 1,153 ms
83,212 KB
testcase_26 AC 576 ms
80,048 KB
testcase_27 AC 1,671 ms
86,444 KB
testcase_28 AC 1,261 ms
83,032 KB
testcase_29 AC 221 ms
77,324 KB
testcase_30 AC 1,366 ms
83,492 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
from collections import defaultdict
input = lambda: sys.stdin.readline().rstrip()

#  -----------------------  #

n = int(input())
S = [input() for _ in range(n)]

st = set(S)

alp = 'abcdefghijklmnopqrstuvwxyz'
for s in S:
  ans = 0
  
  for i in range(len(s)):
    for c in alp:
      if s[i] == c:
        continue
      t = list(s)
      t[i] = c
      if ''.join(t) in st:
        ans += 1
  print(ans)
0