結果

問題 No.2629 A replace B replace C
ユーザー ShirotsumeShirotsume
提出日時 2024-02-16 23:57:06
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 58 ms / 2,000 ms
コード長 692 bytes
コンパイル時間 698 ms
コンパイル使用メモリ 82,080 KB
実行使用メモリ 71,620 KB
最終ジャッジ日時 2024-09-28 23:08:56
合計ジャッジ時間 5,592 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 53 ms
71,620 KB
testcase_01 AC 54 ms
66,380 KB
testcase_02 AC 55 ms
67,412 KB
testcase_03 AC 56 ms
67,924 KB
testcase_04 AC 53 ms
65,472 KB
testcase_05 AC 53 ms
65,704 KB
testcase_06 AC 48 ms
62,112 KB
testcase_07 AC 55 ms
68,224 KB
testcase_08 AC 56 ms
68,348 KB
testcase_09 AC 58 ms
69,332 KB
testcase_10 AC 54 ms
66,188 KB
testcase_11 AC 57 ms
69,592 KB
testcase_12 AC 56 ms
66,468 KB
testcase_13 AC 54 ms
66,164 KB
testcase_14 AC 58 ms
69,748 KB
testcase_15 AC 56 ms
67,684 KB
testcase_16 AC 55 ms
67,096 KB
testcase_17 AC 54 ms
66,592 KB
testcase_18 AC 55 ms
67,808 KB
testcase_19 AC 53 ms
65,096 KB
testcase_20 AC 53 ms
65,992 KB
testcase_21 AC 57 ms
69,120 KB
testcase_22 AC 56 ms
68,560 KB
testcase_23 AC 57 ms
69,648 KB
testcase_24 AC 54 ms
68,172 KB
testcase_25 AC 57 ms
68,528 KB
testcase_26 AC 54 ms
68,124 KB
testcase_27 AC 56 ms
67,640 KB
testcase_28 AC 56 ms
68,284 KB
testcase_29 AC 52 ms
65,980 KB
testcase_30 AC 54 ms
66,372 KB
testcase_31 AC 46 ms
56,856 KB
testcase_32 AC 47 ms
57,212 KB
testcase_33 AC 47 ms
59,236 KB
testcase_34 AC 46 ms
57,212 KB
testcase_35 AC 47 ms
56,804 KB
testcase_36 AC 47 ms
57,532 KB
testcase_37 AC 47 ms
57,524 KB
testcase_38 AC 46 ms
58,076 KB
testcase_39 AC 46 ms
56,864 KB
testcase_40 AC 46 ms
57,156 KB
testcase_41 AC 53 ms
67,748 KB
testcase_42 AC 56 ms
69,084 KB
testcase_43 AC 55 ms
68,328 KB
testcase_44 AC 56 ms
68,532 KB
testcase_45 AC 58 ms
69,936 KB
testcase_46 AC 57 ms
70,172 KB
testcase_47 AC 55 ms
68,096 KB
testcase_48 AC 56 ms
68,696 KB
testcase_49 AC 54 ms
67,136 KB
testcase_50 AC 57 ms
68,764 KB
testcase_51 AC 56 ms
68,744 KB
testcase_52 AC 52 ms
66,648 KB
testcase_53 AC 50 ms
63,784 KB
testcase_54 AC 50 ms
64,336 KB
testcase_55 AC 52 ms
65,256 KB
testcase_56 AC 51 ms
63,500 KB
testcase_57 AC 57 ms
69,260 KB
testcase_58 AC 51 ms
66,724 KB
testcase_59 AC 56 ms
69,524 KB
testcase_60 AC 53 ms
65,624 KB
testcase_61 AC 44 ms
55,820 KB
testcase_62 AC 45 ms
55,996 KB
testcase_63 AC 45 ms
55,572 KB
testcase_64 AC 45 ms
55,720 KB
testcase_65 AC 45 ms
56,012 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys, time, random
from collections import deque, Counter, defaultdict
input = lambda: sys.stdin.readline().rstrip()
ii = lambda: int(input())
mi = lambda: map(int, input().split())
li = lambda: list(mi())
inf = 2 ** 61 - 1
mod = 998244353

n = ii()
s = input()
t = input()
ab = 0
bc = 0
ac = 0

for i in range(n):
    if s[i] == t[i]:
        continue
    if s[i] == 'A' and t[i] == 'B':
        ab += 1
    elif s[i] == 'B' and t[i] == 'C':
        bc += 1
    elif s[i] == 'A' and t[i] == 'C':
        ac += 1
    else:
        print('No')
        exit()

#bc と ac をマッチング
if ac and not bc:
    print('No')
    exit()
if ab == bc:
    print('Yes')
else:
    print('No')
0