結果

問題 No.1994 Confusing Name
ユーザー sasa8uyauyasasa8uyauya
提出日時 2024-08-25 20:25:05
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 524 bytes
コンパイル時間 301 ms
コンパイル使用メモリ 82,444 KB
実行使用メモリ 98,888 KB
最終ジャッジ日時 2024-08-25 20:25:11
合計ジャッジ時間 6,116 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
70,076 KB
testcase_01 AC 46 ms
62,836 KB
testcase_02 AC 45 ms
62,372 KB
testcase_03 AC 34 ms
52,004 KB
testcase_04 AC 33 ms
52,852 KB
testcase_05 AC 109 ms
76,368 KB
testcase_06 AC 149 ms
76,940 KB
testcase_07 AC 74 ms
76,164 KB
testcase_08 AC 135 ms
77,188 KB
testcase_09 AC 167 ms
77,304 KB
testcase_10 AC 108 ms
76,708 KB
testcase_11 AC 114 ms
76,596 KB
testcase_12 WA -
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={}
B=1007
M=1000000007
for i in range(n):
  s=input()
  h=0
  for j in range(len(s)):
    h+=ord(s[j])*(B**j)
    h%=M
  if h not in d:
    d[h]=0
  d[h]+=1
  ss+=[s]
for i in range(n):
  s=ss[i]
  h=0
  for j in range(len(s)):
    h+=ord(s[j])*(B**j)
    h%=M
  c=0
  for j in range(len(s)):
    h-=ord(s[j])*(B**j)
    for k in range(26):
      h+=(k+ord("a"))*(B**j)
      h%=M
      if h in d:
        c+=d[h]*(chr(k+ord("a"))!=s[j])
      h-=(k+ord("a"))*(B**j)
    h+=ord(s[j])*(B**j)
  print(c)
0