結果

問題 No.1994 Confusing Name
ユーザー googol_S0googol_S0
提出日時 2022-07-01 21:51:54
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,067 ms / 2,000 ms
コード長 287 bytes
コンパイル時間 466 ms
コンパイル使用メモリ 82,268 KB
実行使用メモリ 83,600 KB
最終ジャッジ日時 2024-11-26 04:45:30
合計ジャッジ時間 16,384 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
61,252 KB
testcase_01 AC 42 ms
61,124 KB
testcase_02 AC 42 ms
60,224 KB
testcase_03 AC 36 ms
51,956 KB
testcase_04 AC 34 ms
53,372 KB
testcase_05 AC 59 ms
72,704 KB
testcase_06 AC 80 ms
76,084 KB
testcase_07 AC 51 ms
67,368 KB
testcase_08 AC 68 ms
76,328 KB
testcase_09 AC 76 ms
76,504 KB
testcase_10 AC 63 ms
73,372 KB
testcase_11 AC 60 ms
72,708 KB
testcase_12 AC 801 ms
82,680 KB
testcase_13 AC 1,067 ms
82,476 KB
testcase_14 AC 988 ms
83,052 KB
testcase_15 AC 958 ms
81,120 KB
testcase_16 AC 810 ms
80,704 KB
testcase_17 AC 934 ms
81,068 KB
testcase_18 AC 1,054 ms
83,388 KB
testcase_19 AC 1,027 ms
83,600 KB
testcase_20 AC 1,029 ms
83,308 KB
testcase_21 AC 238 ms
77,368 KB
testcase_22 AC 155 ms
76,596 KB
testcase_23 AC 898 ms
83,376 KB
testcase_24 AC 884 ms
82,972 KB
testcase_25 AC 640 ms
79,632 KB
testcase_26 AC 314 ms
78,208 KB
testcase_27 AC 806 ms
82,012 KB
testcase_28 AC 679 ms
80,252 KB
testcase_29 AC 134 ms
76,588 KB
testcase_30 AC 772 ms
80,544 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N=int(input())
S=[input() for i in range(N)]
T=set(S)
for i in range(N):
  ANS=0
  for j in range(len(S[i])):
    a,b=S[i][:j],S[i][j+1:]
    for k in range(26):
      c=chr(ord('a')+k)
      if S[i][j]==c:
        continue
      if a+c+b in T:
        ANS+=1
  T.add(S[i])
  print(ANS)
0