結果

問題 No.2629 A replace B replace C
ユーザー hirayuu_ychirayuu_yc
提出日時 2024-02-16 21:36:59
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 52 ms / 2,000 ms
コード長 716 bytes
コンパイル時間 214 ms
コンパイル使用メモリ 82,644 KB
実行使用メモリ 66,940 KB
最終ジャッジ日時 2024-09-28 19:51:23
合計ジャッジ時間 4,645 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
61,092 KB
testcase_01 AC 44 ms
64,092 KB
testcase_02 AC 44 ms
63,936 KB
testcase_03 AC 46 ms
64,584 KB
testcase_04 AC 46 ms
64,088 KB
testcase_05 AC 43 ms
62,736 KB
testcase_06 AC 38 ms
58,956 KB
testcase_07 AC 44 ms
62,308 KB
testcase_08 AC 51 ms
65,932 KB
testcase_09 AC 52 ms
65,628 KB
testcase_10 AC 43 ms
64,536 KB
testcase_11 AC 48 ms
65,428 KB
testcase_12 AC 46 ms
65,320 KB
testcase_13 AC 46 ms
64,664 KB
testcase_14 AC 50 ms
65,544 KB
testcase_15 AC 47 ms
64,000 KB
testcase_16 AC 47 ms
65,368 KB
testcase_17 AC 45 ms
64,516 KB
testcase_18 AC 45 ms
64,928 KB
testcase_19 AC 43 ms
62,768 KB
testcase_20 AC 45 ms
64,112 KB
testcase_21 AC 49 ms
66,668 KB
testcase_22 AC 47 ms
64,440 KB
testcase_23 AC 51 ms
65,828 KB
testcase_24 AC 49 ms
65,896 KB
testcase_25 AC 50 ms
65,704 KB
testcase_26 AC 48 ms
65,768 KB
testcase_27 AC 48 ms
65,280 KB
testcase_28 AC 49 ms
65,004 KB
testcase_29 AC 49 ms
65,368 KB
testcase_30 AC 46 ms
64,796 KB
testcase_31 AC 34 ms
53,208 KB
testcase_32 AC 33 ms
53,936 KB
testcase_33 AC 34 ms
53,924 KB
testcase_34 AC 32 ms
52,896 KB
testcase_35 AC 32 ms
52,884 KB
testcase_36 AC 32 ms
53,664 KB
testcase_37 AC 33 ms
53,512 KB
testcase_38 AC 33 ms
54,684 KB
testcase_39 AC 33 ms
52,840 KB
testcase_40 AC 32 ms
53,896 KB
testcase_41 AC 49 ms
66,524 KB
testcase_42 AC 49 ms
66,144 KB
testcase_43 AC 50 ms
65,624 KB
testcase_44 AC 50 ms
66,248 KB
testcase_45 AC 50 ms
65,688 KB
testcase_46 AC 52 ms
66,044 KB
testcase_47 AC 49 ms
65,020 KB
testcase_48 AC 48 ms
65,324 KB
testcase_49 AC 46 ms
64,000 KB
testcase_50 AC 52 ms
66,372 KB
testcase_51 AC 48 ms
66,488 KB
testcase_52 AC 46 ms
63,188 KB
testcase_53 AC 43 ms
61,416 KB
testcase_54 AC 42 ms
61,816 KB
testcase_55 AC 41 ms
62,684 KB
testcase_56 AC 41 ms
60,900 KB
testcase_57 AC 50 ms
65,700 KB
testcase_58 AC 42 ms
63,432 KB
testcase_59 AC 51 ms
66,940 KB
testcase_60 AC 44 ms
63,628 KB
testcase_61 AC 33 ms
52,252 KB
testcase_62 AC 33 ms
52,876 KB
testcase_63 AC 32 ms
52,504 KB
testcase_64 AC 32 ms
53,584 KB
testcase_65 AC 33 ms
52,836 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
#sys.setrecursionlimit((1<<19)-1)
#import pypyjit
#pypyjit.set_param('max_unroll_recursion=-1')
input=sys.stdin.buffer.readline

N=int(input())
S=input().decode().rstrip("\n")
T=input().decode().rstrip("\n")
two=0
a=0
b=0
for i in range(N):
    if S[i]=="C" and T[i]!="C":
        print("No")
        exit()
    if S[i]=="B" and T[i]=="A":
        print("No")
        exit()
    if S[i]=="A" and T[i]=="B":
        a+=1
    if S[i]=="A" and T[i]=="C":
        two+=1
    if S[i]=="B" and T[i]=="C":
        b+=1
while two+a+b>0:
    if b==0:
        print("No")
        exit()
    if two!=0:
        two-=1
    elif a!=0:
        a-=1
        b-=1
    else:
        print("No")
        exit()
print("Yes")
0