結果

問題 No.2629 A replace B replace C
ユーザー NPNP
提出日時 2024-02-16 23:07:53
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 470 bytes
コンパイル時間 355 ms
コンパイル使用メモリ 82,104 KB
実行使用メモリ 67,356 KB
最終ジャッジ日時 2024-09-28 21:43:59
合計ジャッジ時間 4,443 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
67,356 KB
testcase_01 AC 36 ms
58,900 KB
testcase_02 AC 35 ms
57,092 KB
testcase_03 AC 35 ms
55,936 KB
testcase_04 AC 33 ms
53,136 KB
testcase_05 AC 32 ms
54,252 KB
testcase_06 AC 34 ms
54,844 KB
testcase_07 AC 34 ms
54,128 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 AC 35 ms
59,140 KB
testcase_11 AC 36 ms
54,444 KB
testcase_12 AC 35 ms
54,156 KB
testcase_13 AC 34 ms
54,256 KB
testcase_14 WA -
testcase_15 AC 36 ms
60,108 KB
testcase_16 AC 33 ms
54,436 KB
testcase_17 AC 32 ms
54,368 KB
testcase_18 AC 32 ms
53,872 KB
testcase_19 AC 34 ms
56,956 KB
testcase_20 AC 33 ms
54,368 KB
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 AC 32 ms
55,116 KB
testcase_32 AC 32 ms
54,024 KB
testcase_33 AC 33 ms
54,176 KB
testcase_34 AC 31 ms
54,528 KB
testcase_35 AC 31 ms
54,036 KB
testcase_36 AC 35 ms
60,260 KB
testcase_37 AC 34 ms
54,508 KB
testcase_38 AC 34 ms
53,868 KB
testcase_39 AC 33 ms
53,864 KB
testcase_40 AC 34 ms
54,616 KB
testcase_41 AC 33 ms
53,512 KB
testcase_42 AC 32 ms
53,072 KB
testcase_43 AC 34 ms
60,100 KB
testcase_44 AC 35 ms
58,956 KB
testcase_45 AC 34 ms
59,604 KB
testcase_46 AC 32 ms
55,056 KB
testcase_47 AC 32 ms
53,792 KB
testcase_48 AC 32 ms
54,432 KB
testcase_49 AC 32 ms
53,856 KB
testcase_50 AC 32 ms
53,996 KB
testcase_51 WA -
testcase_52 AC 32 ms
54,984 KB
testcase_53 AC 32 ms
53,824 KB
testcase_54 AC 32 ms
54,208 KB
testcase_55 AC 33 ms
54,876 KB
testcase_56 AC 33 ms
52,608 KB
testcase_57 WA -
testcase_58 AC 31 ms
52,884 KB
testcase_59 WA -
testcase_60 AC 33 ms
53,632 KB
testcase_61 AC 32 ms
53,148 KB
testcase_62 AC 32 ms
52,616 KB
testcase_63 AC 33 ms
52,744 KB
testcase_64 AC 32 ms
52,608 KB
testcase_65 AC 32 ms
53,168 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def can_transform(S, T):
    for i in range(len(S)):
        if S[i] == 'A' and T[i] == 'B':
            S = S[:i] + S[i:].replace('A', 'B')
        elif S[i] == 'B' and T[i] == 'C':
            if 'A' in S[i:]:
                return "No"
            S = S[:i] + S[i:].replace('B', 'C')
        elif S[i] != T[i]:
            return "No"
    return "Yes" if S == T else "No"

N = int(input().strip())

S = input().strip()
T = input().strip()
print(can_transform(S, T))
0