結果

問題 No.2629 A replace B replace C
ユーザー ikomaikoma
提出日時 2024-02-16 21:46:36
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 522 bytes
コンパイル時間 285 ms
コンパイル使用メモリ 82,460 KB
実行使用メモリ 85,064 KB
最終ジャッジ日時 2024-09-28 20:00:32
合計ジャッジ時間 5,681 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 49 ms
74,080 KB
testcase_01 AC 58 ms
76,288 KB
testcase_02 AC 56 ms
74,508 KB
testcase_03 AC 69 ms
81,900 KB
testcase_04 AC 48 ms
65,820 KB
testcase_05 AC 56 ms
72,112 KB
testcase_06 AC 50 ms
68,912 KB
testcase_07 AC 54 ms
72,680 KB
testcase_08 AC 57 ms
75,604 KB
testcase_09 AC 66 ms
81,944 KB
testcase_10 AC 67 ms
81,468 KB
testcase_11 WA -
testcase_12 AC 72 ms
82,980 KB
testcase_13 AC 55 ms
72,268 KB
testcase_14 AC 67 ms
81,840 KB
testcase_15 AC 68 ms
81,836 KB
testcase_16 AC 56 ms
74,820 KB
testcase_17 AC 56 ms
75,040 KB
testcase_18 AC 56 ms
75,840 KB
testcase_19 AC 51 ms
70,080 KB
testcase_20 AC 54 ms
72,224 KB
testcase_21 AC 66 ms
80,468 KB
testcase_22 AC 58 ms
76,428 KB
testcase_23 AC 65 ms
80,456 KB
testcase_24 AC 57 ms
75,664 KB
testcase_25 AC 57 ms
76,168 KB
testcase_26 AC 53 ms
73,168 KB
testcase_27 AC 53 ms
72,808 KB
testcase_28 AC 67 ms
80,756 KB
testcase_29 AC 49 ms
68,892 KB
testcase_30 AC 52 ms
69,984 KB
testcase_31 AC 71 ms
85,064 KB
testcase_32 AC 68 ms
83,240 KB
testcase_33 AC 71 ms
83,732 KB
testcase_34 AC 68 ms
81,776 KB
testcase_35 AC 68 ms
82,108 KB
testcase_36 AC 70 ms
84,088 KB
testcase_37 AC 70 ms
84,504 KB
testcase_38 AC 71 ms
82,320 KB
testcase_39 AC 57 ms
75,440 KB
testcase_40 AC 67 ms
81,044 KB
testcase_41 AC 53 ms
72,604 KB
testcase_42 AC 59 ms
77,368 KB
testcase_43 AC 59 ms
76,872 KB
testcase_44 AC 57 ms
74,280 KB
testcase_45 AC 67 ms
81,948 KB
testcase_46 AC 66 ms
81,028 KB
testcase_47 AC 53 ms
74,308 KB
testcase_48 AC 57 ms
74,752 KB
testcase_49 AC 51 ms
70,372 KB
testcase_50 AC 67 ms
81,956 KB
testcase_51 AC 57 ms
76,164 KB
testcase_52 AC 53 ms
73,676 KB
testcase_53 AC 46 ms
65,016 KB
testcase_54 AC 51 ms
67,912 KB
testcase_55 AC 48 ms
67,256 KB
testcase_56 AC 47 ms
65,656 KB
testcase_57 AC 58 ms
77,240 KB
testcase_58 AC 52 ms
69,448 KB
testcase_59 AC 65 ms
80,640 KB
testcase_60 AC 52 ms
72,084 KB
testcase_61 AC 40 ms
54,072 KB
testcase_62 AC 38 ms
54,248 KB
testcase_63 AC 38 ms
54,280 KB
testcase_64 AC 39 ms
53,796 KB
testcase_65 AC 39 ms
53,620 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline
from collections import defaultdict,deque,Counter

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

cnt = Counter([s+t for s,t in zip(S,T) if s!=t])
def solve(cnt):
    # (B,A) (C,A) があったらNo
    if "BA" in cnt or "CA" in cnt:
        return False
    # (A,C), (B,C) -> (B,C),(C,C)
    if cnt["AC"]>0 and cnt["BC"]==0:
        return False
    n = cnt["AC"]
    cnt[""]
    # (A,B),(B,C) -> (B,B),(C,C)
    return cnt["AB"]==cnt["BC"]

print("Yes" if solve(cnt) else "No")
0