結果

問題 No.2629 A replace B replace C
ユーザー flygonflygon
提出日時 2024-02-16 22:25:59
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 72 ms / 2,000 ms
コード長 676 bytes
コンパイル時間 156 ms
コンパイル使用メモリ 82,540 KB
実行使用メモリ 74,072 KB
最終ジャッジ日時 2024-09-28 20:59:58
合計ジャッジ時間 5,788 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 47 ms
64,836 KB
testcase_01 AC 62 ms
71,648 KB
testcase_02 AC 64 ms
70,792 KB
testcase_03 AC 72 ms
74,072 KB
testcase_04 AC 63 ms
71,600 KB
testcase_05 AC 62 ms
69,484 KB
testcase_06 AC 57 ms
66,776 KB
testcase_07 AC 61 ms
69,980 KB
testcase_08 AC 56 ms
67,012 KB
testcase_09 AC 58 ms
66,952 KB
testcase_10 AC 65 ms
71,796 KB
testcase_11 AC 65 ms
71,776 KB
testcase_12 AC 66 ms
72,208 KB
testcase_13 AC 65 ms
71,712 KB
testcase_14 AC 58 ms
67,768 KB
testcase_15 AC 63 ms
71,472 KB
testcase_16 AC 63 ms
72,640 KB
testcase_17 AC 64 ms
72,272 KB
testcase_18 AC 64 ms
71,364 KB
testcase_19 AC 61 ms
70,500 KB
testcase_20 AC 66 ms
72,584 KB
testcase_21 AC 56 ms
67,268 KB
testcase_22 AC 55 ms
66,260 KB
testcase_23 AC 58 ms
66,892 KB
testcase_24 AC 57 ms
67,304 KB
testcase_25 AC 55 ms
67,004 KB
testcase_26 AC 56 ms
67,404 KB
testcase_27 AC 55 ms
67,284 KB
testcase_28 AC 55 ms
67,496 KB
testcase_29 AC 54 ms
66,584 KB
testcase_30 AC 52 ms
65,816 KB
testcase_31 AC 60 ms
69,780 KB
testcase_32 AC 59 ms
69,344 KB
testcase_33 AC 61 ms
68,896 KB
testcase_34 AC 60 ms
68,396 KB
testcase_35 AC 59 ms
67,884 KB
testcase_36 AC 61 ms
68,172 KB
testcase_37 AC 60 ms
69,008 KB
testcase_38 AC 58 ms
68,008 KB
testcase_39 AC 58 ms
67,500 KB
testcase_40 AC 61 ms
70,276 KB
testcase_41 AC 56 ms
67,020 KB
testcase_42 AC 57 ms
67,032 KB
testcase_43 AC 56 ms
66,552 KB
testcase_44 AC 55 ms
65,628 KB
testcase_45 AC 58 ms
68,040 KB
testcase_46 AC 58 ms
67,500 KB
testcase_47 AC 55 ms
66,756 KB
testcase_48 AC 54 ms
66,192 KB
testcase_49 AC 53 ms
65,340 KB
testcase_50 AC 56 ms
67,072 KB
testcase_51 AC 55 ms
66,540 KB
testcase_52 AC 51 ms
65,940 KB
testcase_53 AC 49 ms
64,792 KB
testcase_54 AC 51 ms
65,276 KB
testcase_55 AC 53 ms
65,276 KB
testcase_56 AC 50 ms
64,288 KB
testcase_57 AC 56 ms
66,772 KB
testcase_58 AC 52 ms
64,448 KB
testcase_59 AC 56 ms
67,568 KB
testcase_60 AC 53 ms
66,472 KB
testcase_61 AC 42 ms
54,968 KB
testcase_62 AC 41 ms
55,020 KB
testcase_63 AC 41 ms
55,708 KB
testcase_64 AC 41 ms
55,476 KB
testcase_65 AC 41 ms
55,292 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
sys.setrecursionlimit(5*10**5)
input = sys.stdin.readline
from collections import defaultdict, deque, Counter
from heapq import heappop, heappush
from bisect import bisect_left, bisect_right
from math import gcd

n = int(input())
s = input().rstrip()
t = input().rstrip()

all = 0
ok = 1
cnt = 0
ab = 0
bc = 0
ac = 0
for i in range(n):
    if (ord(s[i])) > ord(t[i]):
        ok = 0
    if s[i] == "A" and t[i] == "C":
        ac += 1
    if s[i] == "B" and t[i] == "C":
        bc += 1
    if s[i] == "A" and t[i] == "B":
        ab += 1

if ok and ab == bc:
    if (ab == 0 and ac != 0):
        print('No')
    else:   
        print('Yes')
else:
    print('No')
0