結果

問題 No.1909 Detect from Substrings
ユーザー H20H20
提出日時 2022-04-22 22:12:18
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 420 bytes
コンパイル時間 175 ms
コンパイル使用メモリ 82,404 KB
実行使用メモリ 79,960 KB
最終ジャッジ日時 2024-06-24 03:27:34
合計ジャッジ時間 3,464 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,736 KB
testcase_01 AC 37 ms
52,764 KB
testcase_02 AC 37 ms
52,556 KB
testcase_03 AC 37 ms
53,104 KB
testcase_04 AC 38 ms
52,412 KB
testcase_05 AC 39 ms
53,544 KB
testcase_06 AC 38 ms
53,340 KB
testcase_07 AC 38 ms
51,880 KB
testcase_08 AC 54 ms
77,544 KB
testcase_09 AC 58 ms
79,240 KB
testcase_10 AC 38 ms
53,056 KB
testcase_11 AC 38 ms
52,936 KB
testcase_12 AC 38 ms
54,092 KB
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
testcase_33 WA -
testcase_34 WA -
testcase_35 WA -
testcase_36 WA -
testcase_37 WA -
testcase_38 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

N,M = map(int, input().split())
if N>2:
    print(0)
    exit()
S1 = input()
S2 = input()
ANSSET = set()
T1 = S1[0]+S2
if T1[:M]==S1:
    ANSSET.add(T1)
T2 = S2[0]+S1
if T2[:M]==S2:
    ANSSET.add(T2)
if len(ANSSET)>0:
    print(len(ANSSET))
    exit()

for i1 in range(M):
    if S1[i1]!=S2[i1]:
        break
for i2 in reversed(range(M)):
    if S1[i2]!=S2[i2]:
        break
if i1==i2:
    print(1)
else:
    print(0)
0