結果

問題 No.1994 Confusing Name
ユーザー sasa8uyauyasasa8uyauya
提出日時 2024-08-25 20:12:52
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 344 bytes
コンパイル時間 263 ms
コンパイル使用メモリ 82,376 KB
実行使用メモリ 130,236 KB
最終ジャッジ日時 2024-08-25 20:13:00
合計ジャッジ時間 5,334 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
68,300 KB
testcase_01 AC 42 ms
61,632 KB
testcase_02 AC 42 ms
63,140 KB
testcase_03 AC 35 ms
52,132 KB
testcase_04 AC 34 ms
53,216 KB
testcase_05 AC 76 ms
76,388 KB
testcase_06 AC 101 ms
76,944 KB
testcase_07 AC 66 ms
76,172 KB
testcase_08 AC 88 ms
76,788 KB
testcase_09 AC 107 ms
77,308 KB
testcase_10 AC 81 ms
76,600 KB
testcase_11 AC 75 ms
76,308 KB
testcase_12 TLE -
testcase_13 TLE -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

n=int(input())
ss=[]
d={}
for i in range(n):
  s=list(input())
  if tuple(s) not in d:
    d[tuple(s)]=0
  d[tuple(s)]+=1
  ss+=[s]
for i in range(n):
  s=ss[i]
  c=0
  for j in range(len(s)):
    t=s[j]
    for k in range(26):
      s[j]=chr(k+ord("a"))
      if tuple(s) in d:
        c+=d[tuple(s)]*(chr(k+ord("a"))!=t)
    s[j]=t
  print(c)
0