結果

問題 No.2629 A replace B replace C
ユーザー NPNP
提出日時 2024-02-16 22:56:16
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 412 bytes
コンパイル時間 357 ms
コンパイル使用メモリ 82,580 KB
実行使用メモリ 66,896 KB
最終ジャッジ日時 2024-09-28 21:32:33
合計ジャッジ時間 4,466 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 47 ms
66,896 KB
testcase_01 AC 39 ms
57,932 KB
testcase_02 AC 38 ms
58,532 KB
testcase_03 AC 39 ms
54,116 KB
testcase_04 AC 37 ms
52,876 KB
testcase_05 AC 38 ms
56,140 KB
testcase_06 AC 36 ms
54,460 KB
testcase_07 AC 35 ms
53,112 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 AC 38 ms
59,448 KB
testcase_11 AC 35 ms
53,668 KB
testcase_12 AC 35 ms
54,572 KB
testcase_13 AC 36 ms
54,944 KB
testcase_14 WA -
testcase_15 AC 37 ms
59,368 KB
testcase_16 AC 35 ms
53,420 KB
testcase_17 AC 36 ms
54,292 KB
testcase_18 AC 37 ms
56,204 KB
testcase_19 AC 38 ms
55,708 KB
testcase_20 AC 38 ms
56,596 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 38 ms
54,844 KB
testcase_32 AC 36 ms
54,684 KB
testcase_33 AC 37 ms
54,772 KB
testcase_34 AC 35 ms
54,400 KB
testcase_35 AC 36 ms
54,152 KB
testcase_36 AC 39 ms
58,760 KB
testcase_37 AC 35 ms
55,292 KB
testcase_38 AC 36 ms
54,528 KB
testcase_39 AC 36 ms
54,568 KB
testcase_40 AC 35 ms
53,620 KB
testcase_41 AC 36 ms
54,348 KB
testcase_42 AC 36 ms
54,000 KB
testcase_43 AC 38 ms
58,692 KB
testcase_44 AC 40 ms
58,720 KB
testcase_45 AC 42 ms
59,504 KB
testcase_46 AC 40 ms
54,008 KB
testcase_47 AC 41 ms
58,596 KB
testcase_48 AC 37 ms
53,820 KB
testcase_49 AC 36 ms
55,884 KB
testcase_50 AC 40 ms
60,660 KB
testcase_51 WA -
testcase_52 AC 35 ms
54,480 KB
testcase_53 AC 36 ms
52,812 KB
testcase_54 AC 35 ms
53,148 KB
testcase_55 AC 37 ms
54,652 KB
testcase_56 AC 36 ms
52,888 KB
testcase_57 WA -
testcase_58 AC 36 ms
52,688 KB
testcase_59 WA -
testcase_60 AC 38 ms
54,100 KB
testcase_61 AC 35 ms
52,400 KB
testcase_62 AC 35 ms
53,260 KB
testcase_63 AC 35 ms
53,284 KB
testcase_64 AC 34 ms
52,716 KB
testcase_65 AC 34 ms
52,948 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':
            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