結果

問題 No.1909 Detect from Substrings
ユーザー ikomaikoma
提出日時 2022-04-22 22:40:59
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,662 bytes
コンパイル時間 343 ms
コンパイル使用メモリ 82,248 KB
実行使用メモリ 166,712 KB
最終ジャッジ日時 2024-06-24 04:00:06
合計ジャッジ時間 6,265 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
52,812 KB
testcase_01 AC 38 ms
52,944 KB
testcase_02 AC 40 ms
52,832 KB
testcase_03 AC 42 ms
58,984 KB
testcase_04 AC 45 ms
60,220 KB
testcase_05 AC 52 ms
72,520 KB
testcase_06 AC 60 ms
76,328 KB
testcase_07 AC 60 ms
76,044 KB
testcase_08 AC 161 ms
129,448 KB
testcase_09 AC 118 ms
112,412 KB
testcase_10 AC 98 ms
101,020 KB
testcase_11 AC 83 ms
91,828 KB
testcase_12 AC 74 ms
87,952 KB
testcase_13 WA -
testcase_14 AC 134 ms
131,768 KB
testcase_15 AC 140 ms
114,776 KB
testcase_16 AC 81 ms
85,884 KB
testcase_17 AC 66 ms
76,928 KB
testcase_18 AC 69 ms
76,872 KB
testcase_19 AC 66 ms
76,060 KB
testcase_20 AC 66 ms
76,020 KB
testcase_21 WA -
testcase_22 AC 161 ms
126,212 KB
testcase_23 WA -
testcase_24 AC 88 ms
97,728 KB
testcase_25 AC 79 ms
85,624 KB
testcase_26 AC 147 ms
124,304 KB
testcase_27 AC 151 ms
124,596 KB
testcase_28 AC 138 ms
131,676 KB
testcase_29 AC 187 ms
142,268 KB
testcase_30 WA -
testcase_31 AC 183 ms
137,280 KB
testcase_32 WA -
testcase_33 AC 181 ms
153,076 KB
testcase_34 WA -
testcase_35 AC 183 ms
138,792 KB
testcase_36 WA -
testcase_37 AC 181 ms
138,828 KB
testcase_38 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

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

base1 = []
base2 = []
s0,s1=S[0],S[1]
for i in range(M):
    s0i=s0[i]
    s1i=s1[i]
    if s0[i]==s1[i]:
        base1.append(s0i)
        base2.append(s0i)
    else:
        if i==M-1:
            base1.append(s0i)
            base1.append(s1i)
            base2.append(s1i)
            base2.append(s0i)
            break
        if s0[i+1]==s1[i+1]:
            base1.append(s0i)
            base1.append(s1i)
            base2.append(s1i)
            base2.append(s0i)
            for j in range(i+2,M):
                base1.append(s0[j])
                base2.append(s1[j])
        else:
            if s0[i+1]==s1i:
                base1.append(s0i)
                base1.append(s1i)
                base1.append(s1[i+1])
                for j in range(i+2,M):
                    base1.append(s1[j])
            if s1[i+1]==s0i:
                base2.append(s1i)
                base2.append(s0i)
                base2.append(s0[i+1])
                for j in range(i+2,M):
                    base2.append(s0[j])
        break
base1 = "".join(base1) if base1 is not None else None
base2 = "".join(base2) if base2 is not None else None

def judge(s,b):
    j=0
    for i,ss in enumerate(s):
        if ss!=b[j]:
            j+=1
            if j>=len(b) or ss!=b[j]:
                return False
            if j>i+1:return False
        j+=1
    return j<=len(b)

ans=0
for b in [base1,base2]:
    if b is None:continue
    if len(b)!=M+1:continue
    for s in S:
        if judge(s,b):continue
        break
    else:
        ans+=1
print(ans)
0