結果

問題 No.1909 Detect from Substrings
ユーザー titiatitia
提出日時 2022-04-23 01:26:13
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 783 ms / 2,000 ms
コード長 920 bytes
コンパイル時間 261 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 13,776 KB
最終ジャッジ日時 2024-06-24 06:58:02
合計ジャッジ時間 18,157 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
10,880 KB
testcase_01 AC 32 ms
10,880 KB
testcase_02 AC 33 ms
10,880 KB
testcase_03 AC 34 ms
10,880 KB
testcase_04 AC 46 ms
10,752 KB
testcase_05 AC 116 ms
11,392 KB
testcase_06 AC 127 ms
11,904 KB
testcase_07 AC 133 ms
11,904 KB
testcase_08 AC 468 ms
13,644 KB
testcase_09 AC 181 ms
13,260 KB
testcase_10 AC 282 ms
12,416 KB
testcase_11 AC 184 ms
12,412 KB
testcase_12 AC 315 ms
12,032 KB
testcase_13 AC 438 ms
13,648 KB
testcase_14 AC 368 ms
13,644 KB
testcase_15 AC 545 ms
13,772 KB
testcase_16 AC 360 ms
12,032 KB
testcase_17 AC 318 ms
11,648 KB
testcase_18 AC 299 ms
11,776 KB
testcase_19 AC 339 ms
11,776 KB
testcase_20 AC 338 ms
11,904 KB
testcase_21 AC 668 ms
13,648 KB
testcase_22 AC 536 ms
13,772 KB
testcase_23 AC 397 ms
12,540 KB
testcase_24 AC 372 ms
12,416 KB
testcase_25 AC 406 ms
12,160 KB
testcase_26 AC 441 ms
13,628 KB
testcase_27 AC 564 ms
13,644 KB
testcase_28 AC 515 ms
13,776 KB
testcase_29 AC 716 ms
13,648 KB
testcase_30 AC 750 ms
13,644 KB
testcase_31 AC 628 ms
13,648 KB
testcase_32 AC 670 ms
13,648 KB
testcase_33 AC 699 ms
13,628 KB
testcase_34 AC 783 ms
13,648 KB
testcase_35 AC 627 ms
13,776 KB
testcase_36 AC 673 ms
13,644 KB
testcase_37 AC 621 ms
13,668 KB
testcase_38 AC 627 ms
13,572 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

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

for i in range(M):
    if S[0][i]!=S[1][i]:
        T1=S[0][:i]+S[1][i]+S[0][i:]
        T2=S[1][:i]+S[0][i]+S[1][i:]
        break

ANS=0

for i in range(N):
    s=S[i]
    ind2=0
    c=0
    for ind in range(M):
        if s[ind]==T1[ind2]:
            ind2+=1
        else:
            c+=1
            if s[ind]==T1[ind2+1]:
                ind2+=2
            else:
                c=100
                break
    if c>=2:
        break
    
else:
    ANS+=1

    
for i in range(N):
    s=S[i]
    ind2=0
    c=0
    for ind in range(M):
        if s[ind]==T2[ind2]:
            ind2+=1
        else:
            c+=1
            if s[ind]==T2[ind2+1]:
                ind2+=2
            else:
                c=100
                break
    if c>=2:
        break
    
else:
    ANS+=1

print(ANS)

    

0