結果

問題 No.1994 Confusing Name
ユーザー titan23titan23
提出日時 2022-07-01 22:33:08
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 419 bytes
コンパイル時間 283 ms
コンパイル使用メモリ 81,664 KB
実行使用メモリ 87,808 KB
最終ジャッジ日時 2024-11-26 05:56:36
合計ジャッジ時間 32,887 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 52 ms
62,976 KB
testcase_01 AC 48 ms
62,080 KB
testcase_02 AC 47 ms
61,952 KB
testcase_03 AC 40 ms
53,376 KB
testcase_04 AC 41 ms
53,504 KB
testcase_05 AC 81 ms
76,260 KB
testcase_06 AC 93 ms
76,416 KB
testcase_07 AC 69 ms
76,800 KB
testcase_08 AC 87 ms
76,160 KB
testcase_09 AC 96 ms
76,160 KB
testcase_10 AC 81 ms
76,032 KB
testcase_11 AC 79 ms
76,544 KB
testcase_12 AC 1,776 ms
86,656 KB
testcase_13 TLE -
testcase_14 TLE -
testcase_15 AC 1,930 ms
84,608 KB
testcase_16 TLE -
testcase_17 AC 1,932 ms
84,480 KB
testcase_18 TLE -
testcase_19 TLE -
testcase_20 TLE -
testcase_21 AC 441 ms
79,232 KB
testcase_22 AC 252 ms
77,056 KB
testcase_23 AC 1,951 ms
86,912 KB
testcase_24 AC 1,874 ms
86,528 KB
testcase_25 AC 1,274 ms
82,612 KB
testcase_26 AC 639 ms
78,944 KB
testcase_27 AC 1,733 ms
85,888 KB
testcase_28 AC 1,327 ms
82,816 KB
testcase_29 AC 229 ms
76,800 KB
testcase_30 AC 1,465 ms
83,200 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