結果

問題 No.1994 Confusing Name
ユーザー sasa8uyauyasasa8uyauya
提出日時 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
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,404 KB
testcase_01 AC 37 ms
52,824 KB
testcase_02 AC 37 ms
52,516 KB
testcase_03 AC 37 ms
53,492 KB
testcase_04 AC 36 ms
52,332 KB
testcase_05 AC 70 ms
70,760 KB
testcase_06 AC 93 ms
77,024 KB
testcase_07 AC 59 ms
67,180 KB
testcase_08 AC 78 ms
75,100 KB
testcase_09 AC 84 ms
77,172 KB
testcase_10 AC 80 ms
75,536 KB
testcase_11 AC 69 ms
71,364 KB
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 AC 94 ms
81,200 KB
testcase_30 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

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)
0