結果

問題 No.2629 A replace B replace C
ユーザー KoiKoi
提出日時 2024-02-16 21:32:47
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 55 ms / 2,000 ms
コード長 403 bytes
コンパイル時間 170 ms
コンパイル使用メモリ 82,108 KB
実行使用メモリ 79,664 KB
最終ジャッジ日時 2024-09-28 19:47:15
合計ジャッジ時間 4,944 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 51 ms
79,664 KB
testcase_01 AC 51 ms
70,240 KB
testcase_02 AC 50 ms
70,804 KB
testcase_03 AC 54 ms
77,664 KB
testcase_04 AC 45 ms
63,744 KB
testcase_05 AC 47 ms
69,200 KB
testcase_06 AC 43 ms
66,380 KB
testcase_07 AC 50 ms
68,876 KB
testcase_08 AC 51 ms
71,596 KB
testcase_09 AC 54 ms
73,936 KB
testcase_10 AC 51 ms
73,488 KB
testcase_11 AC 54 ms
73,204 KB
testcase_12 AC 53 ms
74,608 KB
testcase_13 AC 49 ms
69,084 KB
testcase_14 AC 54 ms
73,168 KB
testcase_15 AC 54 ms
72,156 KB
testcase_16 AC 49 ms
70,304 KB
testcase_17 AC 48 ms
71,848 KB
testcase_18 AC 51 ms
73,752 KB
testcase_19 AC 48 ms
68,244 KB
testcase_20 AC 49 ms
68,908 KB
testcase_21 AC 53 ms
72,800 KB
testcase_22 AC 52 ms
69,096 KB
testcase_23 AC 52 ms
72,736 KB
testcase_24 AC 52 ms
72,532 KB
testcase_25 AC 52 ms
72,076 KB
testcase_26 AC 51 ms
70,880 KB
testcase_27 AC 52 ms
68,616 KB
testcase_28 AC 53 ms
74,152 KB
testcase_29 AC 46 ms
67,752 KB
testcase_30 AC 49 ms
67,052 KB
testcase_31 AC 42 ms
66,572 KB
testcase_32 AC 42 ms
66,572 KB
testcase_33 AC 45 ms
69,976 KB
testcase_34 AC 40 ms
63,716 KB
testcase_35 AC 42 ms
65,236 KB
testcase_36 AC 45 ms
68,624 KB
testcase_37 AC 42 ms
67,384 KB
testcase_38 AC 43 ms
68,376 KB
testcase_39 AC 41 ms
64,036 KB
testcase_40 AC 42 ms
65,504 KB
testcase_41 AC 50 ms
70,428 KB
testcase_42 AC 55 ms
71,904 KB
testcase_43 AC 54 ms
71,596 KB
testcase_44 AC 53 ms
72,620 KB
testcase_45 AC 55 ms
74,844 KB
testcase_46 AC 54 ms
76,176 KB
testcase_47 AC 51 ms
71,856 KB
testcase_48 AC 50 ms
71,460 KB
testcase_49 AC 49 ms
69,832 KB
testcase_50 AC 55 ms
73,928 KB
testcase_51 AC 52 ms
71,704 KB
testcase_52 AC 47 ms
69,744 KB
testcase_53 AC 43 ms
63,804 KB
testcase_54 AC 44 ms
65,804 KB
testcase_55 AC 43 ms
65,164 KB
testcase_56 AC 42 ms
63,292 KB
testcase_57 AC 53 ms
71,864 KB
testcase_58 AC 44 ms
67,008 KB
testcase_59 AC 52 ms
73,288 KB
testcase_60 AC 45 ms
68,160 KB
testcase_61 AC 35 ms
52,676 KB
testcase_62 AC 35 ms
53,572 KB
testcase_63 AC 35 ms
53,616 KB
testcase_64 AC 33 ms
52,672 KB
testcase_65 AC 34 ms
52,260 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N=int(input())
S=list(input())
T=list(input())
x=0
y=0
z=0
ans="Yes"
for i in range(N):
    if(S[i]>T[i]):
        ans="No"
        break
    elif(S[i]<T[i]):
        if(S[i]=="A" and T[i]=="B"):
            x+=1
        if(S[i]=="A" and T[i]=="C"):
            y+=1
        if(S[i]=="B" and T[i]=="C"):
            z+=1
if(z==0 and (x+y)>0):
    ans="No"
else:
    if(x!=z):
        ans="No"
print(ans)
0