結果

問題 No.2629 A replace B replace C
ユーザー 👑 rin204rin204
提出日時 2024-02-18 17:37:21
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 258 bytes
コンパイル時間 218 ms
コンパイル使用メモリ 82,384 KB
実行使用メモリ 75,968 KB
最終ジャッジ日時 2024-09-29 00:43:44
合計ジャッジ時間 5,270 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 WA -
testcase_03 AC 52 ms
75,968 KB
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 AC 49 ms
73,696 KB
testcase_09 AC 51 ms
75,772 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 AC 52 ms
75,572 KB
testcase_15 WA -
testcase_16 WA -
testcase_17 AC 48 ms
75,204 KB
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 AC 52 ms
75,524 KB
testcase_22 AC 45 ms
71,752 KB
testcase_23 AC 49 ms
75,648 KB
testcase_24 AC 47 ms
75,508 KB
testcase_25 AC 45 ms
73,700 KB
testcase_26 AC 45 ms
72,084 KB
testcase_27 AC 49 ms
71,012 KB
testcase_28 AC 50 ms
75,824 KB
testcase_29 AC 43 ms
70,760 KB
testcase_30 AC 43 ms
68,876 KB
testcase_31 AC 51 ms
75,896 KB
testcase_32 AC 51 ms
75,712 KB
testcase_33 AC 55 ms
75,780 KB
testcase_34 AC 50 ms
75,816 KB
testcase_35 AC 51 ms
75,492 KB
testcase_36 AC 49 ms
75,920 KB
testcase_37 AC 49 ms
75,864 KB
testcase_38 AC 50 ms
75,592 KB
testcase_39 AC 47 ms
75,352 KB
testcase_40 AC 50 ms
75,712 KB
testcase_41 AC 46 ms
72,000 KB
testcase_42 AC 48 ms
75,356 KB
testcase_43 AC 47 ms
73,648 KB
testcase_44 AC 47 ms
75,208 KB
testcase_45 AC 49 ms
75,604 KB
testcase_46 AC 50 ms
75,844 KB
testcase_47 AC 49 ms
75,404 KB
testcase_48 AC 45 ms
73,216 KB
testcase_49 AC 45 ms
71,260 KB
testcase_50 AC 50 ms
75,236 KB
testcase_51 AC 44 ms
73,804 KB
testcase_52 AC 41 ms
73,068 KB
testcase_53 AC 38 ms
66,276 KB
testcase_54 AC 38 ms
67,540 KB
testcase_55 AC 40 ms
67,848 KB
testcase_56 AC 42 ms
65,496 KB
testcase_57 AC 46 ms
73,216 KB
testcase_58 AC 39 ms
67,644 KB
testcase_59 AC 50 ms
75,564 KB
testcase_60 AC 44 ms
71,044 KB
testcase_61 AC 32 ms
53,316 KB
testcase_62 AC 31 ms
53,128 KB
testcase_63 AC 31 ms
52,336 KB
testcase_64 WA -
testcase_65 AC 31 ms
52,252 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
S = input()
T = input()
f = False
ab = 0
bc = 0
for s, t in zip(S, T):
    if s == "A" and t == "B":
        ab += 1
    elif s == "B" and t == "C":
        bc += 1
        f = True

if f and ab == bc:
    print("Yes")
else:
    print("No")
0