結果

問題 No.1909 Detect from Substrings
ユーザー rlangevinrlangevin
提出日時 2023-06-12 12:17:16
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 146 ms / 2,000 ms
コード長 663 bytes
コンパイル時間 186 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 155,924 KB
最終ジャッジ日時 2024-06-11 14:55:38
合計ジャッジ時間 6,810 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
51,712 KB
testcase_01 AC 35 ms
51,584 KB
testcase_02 AC 36 ms
52,352 KB
testcase_03 AC 41 ms
58,880 KB
testcase_04 AC 47 ms
67,712 KB
testcase_05 AC 93 ms
94,468 KB
testcase_06 AC 136 ms
115,368 KB
testcase_07 AC 143 ms
115,456 KB
testcase_08 AC 130 ms
155,924 KB
testcase_09 AC 127 ms
140,932 KB
testcase_10 AC 139 ms
143,896 KB
testcase_11 AC 137 ms
142,356 KB
testcase_12 AC 146 ms
145,756 KB
testcase_13 AC 121 ms
146,696 KB
testcase_14 AC 127 ms
147,844 KB
testcase_15 AC 124 ms
152,856 KB
testcase_16 AC 143 ms
146,396 KB
testcase_17 AC 125 ms
114,176 KB
testcase_18 AC 128 ms
114,304 KB
testcase_19 AC 141 ms
115,800 KB
testcase_20 AC 137 ms
115,200 KB
testcase_21 AC 129 ms
148,660 KB
testcase_22 AC 128 ms
155,916 KB
testcase_23 AC 132 ms
139,672 KB
testcase_24 AC 134 ms
137,248 KB
testcase_25 AC 142 ms
146,116 KB
testcase_26 AC 125 ms
154,948 KB
testcase_27 AC 128 ms
150,784 KB
testcase_28 AC 127 ms
145,808 KB
testcase_29 AC 121 ms
143,736 KB
testcase_30 AC 128 ms
149,252 KB
testcase_31 AC 119 ms
143,200 KB
testcase_32 AC 126 ms
148,608 KB
testcase_33 AC 119 ms
146,300 KB
testcase_34 AC 124 ms
149,100 KB
testcase_35 AC 125 ms
145,544 KB
testcase_36 AC 126 ms
148,496 KB
testcase_37 AC 130 ms
145,288 KB
testcase_38 AC 129 ms
149,028 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def produce(x, y):
    K = len(x)
    left, right = 0, K-1
    while x[left] == y[left]:
        left += 1
    while x[right] == y[right]:
        right -= 1
    temp1 = x[:left] + [y[left]] + x[left:]
    temp2 = x[:right+1] + [y[right]]+ x[right+1:]
    return [temp1, temp2]
    
def match(x, y):
    now = 0
    temp = y + ["$"]
    for xx in x:
        if temp[now] == xx:
            now += 1
    return now == len(temp) - 1


N, M = map(int, input().split())
S = []
for i in range(N):
    S.append(list(input()))

kouho = produce(S[0], S[1])
ans = [1, 1]
for i in range(1, N):
    for j in range(2):
        ans[j] &= match(kouho[j], S[i])

print(sum(ans))
0