結果

問題 No.1909 Detect from Substrings
ユーザー chineristACchineristAC
提出日時 2022-02-06 22:06:43
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 80 ms / 2,000 ms
コード長 584 bytes
コンパイル時間 318 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 80,000 KB
最終ジャッジ日時 2024-06-13 04:55:58
合計ジャッジ時間 5,881 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
51,968 KB
testcase_01 AC 38 ms
51,968 KB
testcase_02 AC 38 ms
51,968 KB
testcase_03 AC 44 ms
57,856 KB
testcase_04 AC 45 ms
60,288 KB
testcase_05 AC 55 ms
73,412 KB
testcase_06 AC 68 ms
76,800 KB
testcase_07 AC 67 ms
76,416 KB
testcase_08 AC 77 ms
80,000 KB
testcase_09 AC 78 ms
78,720 KB
testcase_10 AC 69 ms
77,312 KB
testcase_11 AC 64 ms
77,068 KB
testcase_12 AC 64 ms
75,648 KB
testcase_13 AC 72 ms
79,360 KB
testcase_14 AC 73 ms
78,772 KB
testcase_15 AC 77 ms
79,616 KB
testcase_16 AC 67 ms
76,580 KB
testcase_17 AC 64 ms
76,052 KB
testcase_18 AC 68 ms
76,452 KB
testcase_19 AC 74 ms
76,836 KB
testcase_20 AC 75 ms
76,672 KB
testcase_21 AC 80 ms
79,104 KB
testcase_22 AC 75 ms
79,772 KB
testcase_23 AC 70 ms
77,784 KB
testcase_24 AC 68 ms
77,312 KB
testcase_25 AC 68 ms
76,032 KB
testcase_26 AC 74 ms
79,268 KB
testcase_27 AC 79 ms
79,488 KB
testcase_28 AC 78 ms
78,784 KB
testcase_29 AC 77 ms
79,360 KB
testcase_30 AC 78 ms
79,488 KB
testcase_31 AC 76 ms
78,848 KB
testcase_32 AC 78 ms
79,232 KB
testcase_33 AC 75 ms
78,848 KB
testcase_34 AC 77 ms
79,484 KB
testcase_35 AC 75 ms
79,616 KB
testcase_36 AC 77 ms
79,488 KB
testcase_37 AC 74 ms
78,720 KB
testcase_38 AC 76 ms
79,744 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def check(N,M,S,T):
    for i in range(N):
        search = 0
        for j in range(M+1):
            if search==M:
                break
            if S[i][search]==T[j]:
                search += 1
        if search!=M:
            return 0
    return 1


def solve(N,M,S):
    for j in range(M):
        if S[0][j]!=S[1][j]:
            T0 = S[0][:j] + S[1][j] + S[0][j:]
            T1 = S[1][:j] + S[0][j] + S[1][j:]
            res = check(N,M,S,T0) + check(N,M,S,T1)
            return res

N,M = map(int,input().split())
S = [input() for _ in range(N)]
print(solve(N,M,S))

0