結果

問題 No.2629 A replace B replace C
コンテスト
ユーザー mkawa2
提出日時 2026-01-06 23:14:16
言語 Python3
(3.14.2 + numpy 2.4.0 + scipy 1.16.3)
結果
AC  
実行時間 173 ms / 2,000 ms
コード長 1,190 bytes
記録
記録タグの例:
初AC ショートコード 純ショートコード 純主流ショートコード 最速実行時間
コンパイル時間 572 ms
コンパイル使用メモリ 20,704 KB
実行使用メモリ 15,488 KB
最終ジャッジ日時 2026-01-06 23:14:31
合計ジャッジ時間 13,115 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 5
other AC * 61
権限があれば一括ダウンロードができます

ソースコード

diff #
raw source code

import sys

# sys.setrecursionlimit(200005)
# sys.set_int_max_str_digits(200005)
int1 = lambda x: int(x)-1
pDB = lambda *x: print(*x, end="\n", file=sys.stderr)
p2D = lambda x: print(*x, sep="\n", end="\n\n", file=sys.stderr)
def II(): return int(sys.stdin.readline())
def LI(): return list(map(int, sys.stdin.readline().split()))
def LLI(rows_number): return [LI() for _ in range(rows_number)]
def LI1(): return list(map(int1, sys.stdin.readline().split()))
def LLI1(rows_number): return [LI1() for _ in range(rows_number)]
def SI(): return sys.stdin.readline().rstrip()

dij = [(0, 1), (-1, 0), (0, -1), (1, 0)]
# dij = [(0, 1), (-1, 0), (0, -1), (1, 0), (1, 1), (1, -1), (-1, 1), (-1, -1)]
# inf = -1-(-1 << 31)
inf = -1-(-1 << 62)

# md = 10**9+7
md = 998244353

def ok():
    n = II()
    s = SI()
    t = SI()
    if s == t: return True
    cnt = [0]*3
    for c, d in zip(s, t):
        if c == d: continue
        if c > d: return False
        if c == "A":
            if d == "B": cnt[0] += 1
            else: cnt[2] += 1
        else:
            cnt[1] += 1
    if cnt[0] != cnt[1]: return False
    if cnt[0] == 0: return False
    return True

print("Yes" if ok() else "No")
0