結果

問題 No.1909 Detect from Substrings
ユーザー tassei903tassei903
提出日時 2022-04-22 21:57:50
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 197 ms / 2,000 ms
コード長 1,115 bytes
コンパイル時間 310 ms
コンパイル使用メモリ 82,592 KB
実行使用メモリ 160,192 KB
最終ジャッジ日時 2024-06-24 03:07:27
合計ジャッジ時間 7,119 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
52,312 KB
testcase_01 AC 40 ms
52,992 KB
testcase_02 AC 42 ms
53,760 KB
testcase_03 AC 50 ms
62,412 KB
testcase_04 AC 54 ms
69,432 KB
testcase_05 AC 91 ms
88,884 KB
testcase_06 AC 121 ms
105,488 KB
testcase_07 AC 128 ms
105,100 KB
testcase_08 AC 163 ms
160,004 KB
testcase_09 AC 162 ms
145,184 KB
testcase_10 AC 154 ms
134,564 KB
testcase_11 AC 148 ms
133,024 KB
testcase_12 AC 142 ms
125,372 KB
testcase_13 AC 155 ms
151,260 KB
testcase_14 AC 165 ms
152,548 KB
testcase_15 AC 162 ms
156,844 KB
testcase_16 AC 142 ms
126,012 KB
testcase_17 AC 120 ms
105,144 KB
testcase_18 AC 120 ms
105,600 KB
testcase_19 AC 118 ms
105,808 KB
testcase_20 AC 122 ms
105,324 KB
testcase_21 AC 160 ms
153,356 KB
testcase_22 AC 159 ms
160,192 KB
testcase_23 AC 169 ms
130,592 KB
testcase_24 AC 164 ms
128,436 KB
testcase_25 AC 166 ms
125,472 KB
testcase_26 AC 197 ms
158,904 KB
testcase_27 AC 178 ms
155,192 KB
testcase_28 AC 177 ms
150,032 KB
testcase_29 AC 138 ms
132,940 KB
testcase_30 AC 140 ms
137,596 KB
testcase_31 AC 136 ms
131,432 KB
testcase_32 AC 140 ms
137,196 KB
testcase_33 AC 136 ms
135,084 KB
testcase_34 AC 141 ms
137,336 KB
testcase_35 AC 134 ms
134,444 KB
testcase_36 AC 135 ms
137,116 KB
testcase_37 AC 135 ms
133,896 KB
testcase_38 AC 138 ms
137,068 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = lambda :sys.stdin.readline()[:-1]
ni = lambda :int(input())
na = lambda :list(map(int,input().split()))
yes = lambda :print("yes");Yes = lambda :print("Yes");YES = lambda : print("YES")
no = lambda :print("no");No = lambda :print("No");NO = lambda : print("NO")
#######################################################################
c = 0
n,m = na()
s = [list(input()) for i in range(n)]
a = s[0]
b = s[1]

for i in range(m):
    if a[i]!=b[i]:
        l = i
        break
for i in range(m-1,-1,-1):
    if a[i]!=b[i]:
        r = i
        break
x = a[:l]+[b[l]]+a[l:]
y = a[:r+1]+[b[r]]+b[r+1:]
ans = 1
for i in range(n):
    t = m+1
    for j in range(m):
        if s[i][j]!=x[j]:
            t = j
            break
    for j in range(t+1,m+1):
        if s[i][j-1]!=x[j]:
            ans = 0
if ans:
    c += 1
ans = 1
for i in range(n):
    t = m+1
    for j in range(m):
        if s[i][j]!=y[j]:
            t = j
            #print(i, j)
            break
    for j in range(t+1,m+1):
        if s[i][j-1]!=y[j]:
            ans = 0
            #print(i,t)
if ans:
    c += 1
print(c)
0