結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,396 KB
testcase_01 AC 38 ms
53,184 KB
testcase_02 AC 40 ms
52,196 KB
testcase_03 AC 46 ms
59,552 KB
testcase_04 AC 44 ms
61,132 KB
testcase_05 AC 51 ms
72,528 KB
testcase_06 AC 58 ms
75,900 KB
testcase_07 AC 59 ms
75,924 KB
testcase_08 AC 159 ms
129,548 KB
testcase_09 AC 117 ms
112,408 KB
testcase_10 AC 94 ms
100,912 KB
testcase_11 AC 81 ms
91,808 KB
testcase_12 AC 72 ms
87,912 KB
testcase_13 WA -
testcase_14 AC 136 ms
131,860 KB
testcase_15 AC 142 ms
115,120 KB
testcase_16 AC 83 ms
86,024 KB
testcase_17 AC 67 ms
77,264 KB
testcase_18 AC 70 ms
76,528 KB
testcase_19 AC 67 ms
75,896 KB
testcase_20 AC 68 ms
75,968 KB
testcase_21 WA -
testcase_22 AC 163 ms
129,516 KB
testcase_23 WA -
testcase_24 AC 92 ms
97,428 KB
testcase_25 AC 81 ms
85,344 KB
testcase_26 AC 150 ms
124,500 KB
testcase_27 AC 151 ms
124,496 KB
testcase_28 AC 137 ms
131,744 KB
testcase_29 AC 187 ms
142,304 KB
testcase_30 WA -
testcase_31 AC 185 ms
137,368 KB
testcase_32 WA -
testcase_33 AC 189 ms
153,140 KB
testcase_34 WA -
testcase_35 AC 183 ms
138,848 KB
testcase_36 WA -
testcase_37 AC 190 ms
138,984 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
        j+=1
        if j>len(b):return False
    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