結果

問題 No.1909 Detect from Substrings
ユーザー titan23titan23
提出日時 2022-12-25 19:39:27
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 79 ms / 2,000 ms
コード長 666 bytes
コンパイル時間 390 ms
コンパイル使用メモリ 82,064 KB
実行使用メモリ 80,220 KB
最終ジャッジ日時 2024-11-19 10:02:25
合計ジャッジ時間 5,587 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
51,712 KB
testcase_01 AC 39 ms
52,208 KB
testcase_02 AC 39 ms
52,224 KB
testcase_03 AC 42 ms
57,728 KB
testcase_04 AC 43 ms
59,520 KB
testcase_05 AC 53 ms
72,064 KB
testcase_06 AC 58 ms
75,516 KB
testcase_07 AC 58 ms
75,912 KB
testcase_08 AC 70 ms
79,872 KB
testcase_09 AC 62 ms
79,164 KB
testcase_10 AC 63 ms
77,548 KB
testcase_11 AC 59 ms
77,312 KB
testcase_12 AC 64 ms
76,240 KB
testcase_13 AC 66 ms
79,196 KB
testcase_14 AC 69 ms
79,288 KB
testcase_15 AC 74 ms
79,628 KB
testcase_16 AC 67 ms
76,236 KB
testcase_17 AC 64 ms
75,776 KB
testcase_18 AC 66 ms
75,776 KB
testcase_19 AC 66 ms
75,964 KB
testcase_20 AC 66 ms
75,420 KB
testcase_21 AC 73 ms
79,952 KB
testcase_22 AC 71 ms
79,912 KB
testcase_23 AC 69 ms
78,224 KB
testcase_24 AC 68 ms
77,684 KB
testcase_25 AC 67 ms
76,352 KB
testcase_26 AC 71 ms
80,128 KB
testcase_27 AC 76 ms
79,728 KB
testcase_28 AC 74 ms
79,016 KB
testcase_29 AC 76 ms
79,540 KB
testcase_30 AC 74 ms
80,220 KB
testcase_31 AC 75 ms
79,012 KB
testcase_32 AC 76 ms
80,000 KB
testcase_33 AC 75 ms
78,988 KB
testcase_34 AC 77 ms
79,744 KB
testcase_35 AC 79 ms
80,076 KB
testcase_36 AC 77 ms
79,748 KB
testcase_37 AC 74 ms
79,232 KB
testcase_38 AC 77 ms
80,144 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = lambda: sys.stdin.readline().rstrip()

#  -----------------------  #

n, m = map(int, input().split())
S = [input() for _ in range(n)]
ans = 0
s = S[0]
t = S[1]
j = -1
for i in range(m):
  if s[i] != t[i]:
    j = i
    break
T1 = s[:j] + s[j] + t[j:]
T2 = s[:j] + t[j] + s[j:]

def isok(T, s):
  i = 0
  j = 0
  diff = 0
  while i < m and j < m+1:
    if s[i] != T[j]:
      diff += 1
      if diff == 2:
        break
      i -= 1
    i += 1
    j += 1
  else:
    return True
  return False

# T1?
for s in S:
  if not isok(T1, s):
    break
else:
  ans += 1
  
# T2?
for s in S:
  if not isok(T2, s):
    break
else:
  ans += 1
  
print(ans)

0