結果
| 問題 | No.1994 Confusing Name | 
| コンテスト | |
| ユーザー |  sasa8uyauya | 
| 提出日時 | 2024-08-25 20:38:45 | 
| 言語 | PyPy3 (7.3.15) | 
| 結果 | 
                                WA
                                 
                             | 
| 実行時間 | - | 
| コード長 | 659 bytes | 
| コンパイル時間 | 345 ms | 
| コンパイル使用メモリ | 82,784 KB | 
| 実行使用メモリ | 120,448 KB | 
| 最終ジャッジ日時 | 2024-08-25 20:38:52 | 
| 合計ジャッジ時間 | 6,970 ms | 
| ジャッジサーバーID (参考情報) | judge1 / judge2 | 
(要ログイン)
| ファイルパターン | 結果 | 
|---|---|
| sample | AC * 3 | 
| other | AC * 10 WA * 18 | 
ソースコード
n=int(input())
ss=[]
d={}
B=1007
M=1000000007
P=[1]
for i in range(1,10):
  P+=[P[-1]*B%M]
for i in range(n):
  s=input()
  h=0
  for j in range(len(s)):
    h+=ord(s[j])*P[j]
    h%=M
  if h not in d:
    d[h]=0
  d[h]+=1
  for j in range(len(s)):
    h-=ord(s[j])*P[j]
    h+=ord("?")*P[j]
    h%=M
    if h not in d:
      d[h]=0
    d[h]+=1
    h-=ord("?")*P[j]
    h+=ord(s[j])*P[j]
    h%=M
  ss+=[s]
for i in range(n):
  s=ss[i]
  h=0
  for j in range(len(s)):
    h+=ord(s[j])*P[j]
    h%=M
  c=0
  for j in range(len(s)):
    h-=ord(s[j])*P[j]
    h+=ord("?")*P[j]
    h%=M
    c+=d[h]-1
    h-=ord("?")*P[j]
    h+=ord(s[j])*P[j]
    h%=M
  print(c)
            
            
            
        