結果

問題 No.1994 Confusing Name
ユーザー sasa8uyauyasasa8uyauya
提出日時 2024-08-25 20:31:52
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 649 bytes
コンパイル時間 454 ms
コンパイル使用メモリ 82,428 KB
実行使用メモリ 153,972 KB
最終ジャッジ日時 2024-08-25 20:32:12
合計ジャッジ時間 16,547 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
54,176 KB
testcase_01 AC 36 ms
53,948 KB
testcase_02 AC 35 ms
52,864 KB
testcase_03 AC 36 ms
54,052 KB
testcase_04 AC 41 ms
52,628 KB
testcase_05 AC 82 ms
75,916 KB
testcase_06 AC 145 ms
77,596 KB
testcase_07 AC 64 ms
73,504 KB
testcase_08 AC 117 ms
76,976 KB
testcase_09 AC 121 ms
77,188 KB
testcase_10 AC 82 ms
76,528 KB
testcase_11 AC 78 ms
76,188 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 192 ms
79,928 KB
testcase_30 WA -
権限があれば一括ダウンロードができます

ソースコード

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