結果

問題 No.2629 A replace B replace C
ユーザー tassei903tassei903
提出日時 2024-02-11 16:25:18
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 50 ms / 2,000 ms
コード長 773 bytes
コンパイル時間 265 ms
コンパイル使用メモリ 82,584 KB
実行使用メモリ 71,696 KB
最終ジャッジ日時 2024-09-28 18:17:04
合計ジャッジ時間 4,737 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
67,824 KB
testcase_01 AC 44 ms
65,368 KB
testcase_02 AC 44 ms
64,756 KB
testcase_03 AC 44 ms
66,980 KB
testcase_04 AC 41 ms
61,956 KB
testcase_05 AC 43 ms
63,116 KB
testcase_06 AC 38 ms
59,848 KB
testcase_07 AC 46 ms
66,012 KB
testcase_08 AC 44 ms
68,364 KB
testcase_09 AC 47 ms
71,076 KB
testcase_10 AC 42 ms
65,300 KB
testcase_11 AC 46 ms
71,456 KB
testcase_12 AC 43 ms
65,588 KB
testcase_13 AC 44 ms
64,672 KB
testcase_14 AC 46 ms
71,200 KB
testcase_15 AC 45 ms
68,424 KB
testcase_16 AC 42 ms
64,556 KB
testcase_17 AC 42 ms
63,480 KB
testcase_18 AC 41 ms
64,792 KB
testcase_19 AC 39 ms
62,248 KB
testcase_20 AC 40 ms
65,452 KB
testcase_21 AC 45 ms
69,700 KB
testcase_22 AC 46 ms
68,308 KB
testcase_23 AC 45 ms
69,580 KB
testcase_24 AC 45 ms
68,324 KB
testcase_25 AC 45 ms
68,492 KB
testcase_26 AC 43 ms
67,440 KB
testcase_27 AC 43 ms
66,416 KB
testcase_28 AC 46 ms
69,612 KB
testcase_29 AC 42 ms
64,300 KB
testcase_30 AC 44 ms
65,936 KB
testcase_31 AC 35 ms
54,072 KB
testcase_32 AC 35 ms
54,004 KB
testcase_33 AC 36 ms
54,056 KB
testcase_34 AC 34 ms
53,412 KB
testcase_35 AC 35 ms
53,692 KB
testcase_36 AC 35 ms
55,108 KB
testcase_37 AC 35 ms
54,548 KB
testcase_38 AC 34 ms
54,920 KB
testcase_39 AC 34 ms
53,688 KB
testcase_40 AC 35 ms
55,108 KB
testcase_41 AC 47 ms
67,084 KB
testcase_42 AC 50 ms
68,912 KB
testcase_43 AC 47 ms
68,568 KB
testcase_44 AC 46 ms
67,204 KB
testcase_45 AC 48 ms
71,380 KB
testcase_46 AC 47 ms
70,280 KB
testcase_47 AC 45 ms
68,100 KB
testcase_48 AC 44 ms
67,884 KB
testcase_49 AC 43 ms
65,556 KB
testcase_50 AC 49 ms
71,696 KB
testcase_51 AC 46 ms
68,312 KB
testcase_52 AC 43 ms
65,532 KB
testcase_53 AC 38 ms
61,240 KB
testcase_54 AC 39 ms
63,440 KB
testcase_55 AC 40 ms
63,516 KB
testcase_56 AC 41 ms
62,400 KB
testcase_57 AC 48 ms
68,736 KB
testcase_58 AC 41 ms
64,308 KB
testcase_59 AC 46 ms
69,784 KB
testcase_60 AC 41 ms
64,996 KB
testcase_61 AC 34 ms
52,500 KB
testcase_62 AC 34 ms
52,120 KB
testcase_63 AC 32 ms
53,308 KB
testcase_64 AC 33 ms
52,068 KB
testcase_65 AC 31 ms
53,132 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = lambda :sys.stdin.readline()[:-1]
ni = lambda :int(input())
na = lambda :list(map(int,input().split()))
yes = lambda :print("yes");Yes = lambda :print("Yes");YES = lambda : print("YES")
no = lambda :print("no");No = lambda :print("No");NO = lambda : print("NO")
######################################################################
n = int(input())
s = input()
t = input()

x1, x2, x3 = 0,0,0

for i in range(len(s)):
    if s[i] == t[i]:
        continue
    elif s[i] > t[i]:
        No()
        exit()
    elif s[i] == "A" and t[i] == "B":
        x1 += 1
    elif s[i] == "A" and t[i] == "C":
        x2 += 1
    elif s[i] == "B" and t[i] == "C":
        x3 += 1

if x1 == x2 == x3 == 0:
    Yes()
elif x1 == x3 and x1 > 0:
    Yes()
else:
    No()
0