結果

問題 No.1994 Confusing Name
ユーザー sasa8uyauyasasa8uyauya
提出日時 2024-08-25 20:33:49
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 686 bytes
コンパイル時間 302 ms
コンパイル使用メモリ 82,472 KB
実行使用メモリ 153,820 KB
最終ジャッジ日時 2024-08-25 20:34:00
合計ジャッジ時間 8,355 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
62,500 KB
testcase_01 AC 42 ms
55,404 KB
testcase_02 AC 39 ms
56,356 KB
testcase_03 AC 38 ms
54,552 KB
testcase_04 AC 39 ms
54,516 KB
testcase_05 AC 113 ms
77,152 KB
testcase_06 AC 176 ms
78,944 KB
testcase_07 AC 78 ms
77,040 KB
testcase_08 AC 135 ms
77,816 KB
testcase_09 AC 159 ms
78,472 KB
testcase_10 AC 112 ms
77,348 KB
testcase_11 AC 131 ms
77,276 KB
testcase_12 TLE -
testcase_13 TLE -
testcase_14 TLE -
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={}
M=1000000007
from random import randrange
B=randrange(M)
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
  for j in range(len(s)):
    h-=ord(s[j])*(B**j)
    h+=ord("?")*(B**j)
    h%=M
    if h not in d:
      d[h]=0
    d[h]+=1
    h-=ord("?")*(B**j)
    h+=ord(s[j])*(B**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])*(B**j)
    h%=M
  c=0
  for j in range(len(s)):
    h-=ord(s[j])*(B**j)
    h+=ord("?")*(B**j)
    h%=M
    c+=d[h]
    h-=ord("?")*(B**j)
    h+=ord(s[j])*(B**j)
    h%=M
  c-=d[h]*len(s)
  print(c)
0