結果

問題 No.2629 A replace B replace C
ユーザー ntudantuda
提出日時 2024-02-17 13:36:30
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 70 ms / 2,000 ms
コード長 394 bytes
コンパイル時間 426 ms
コンパイル使用メモリ 82,436 KB
実行使用メモリ 76,568 KB
最終ジャッジ日時 2024-09-28 23:41:02
合計ジャッジ時間 5,788 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
55,148 KB
testcase_01 AC 56 ms
73,136 KB
testcase_02 AC 55 ms
70,428 KB
testcase_03 AC 58 ms
74,916 KB
testcase_04 AC 50 ms
65,544 KB
testcase_05 AC 50 ms
66,552 KB
testcase_06 AC 44 ms
61,296 KB
testcase_07 AC 62 ms
75,980 KB
testcase_08 AC 66 ms
76,084 KB
testcase_09 AC 70 ms
76,164 KB
testcase_10 AC 57 ms
71,128 KB
testcase_11 AC 70 ms
76,256 KB
testcase_12 AC 57 ms
73,268 KB
testcase_13 AC 58 ms
73,604 KB
testcase_14 AC 67 ms
76,568 KB
testcase_15 AC 63 ms
76,140 KB
testcase_16 AC 52 ms
69,368 KB
testcase_17 AC 51 ms
70,280 KB
testcase_18 AC 55 ms
72,992 KB
testcase_19 AC 52 ms
66,876 KB
testcase_20 AC 53 ms
70,432 KB
testcase_21 AC 66 ms
76,180 KB
testcase_22 AC 68 ms
76,084 KB
testcase_23 AC 67 ms
75,976 KB
testcase_24 AC 65 ms
76,036 KB
testcase_25 AC 64 ms
76,008 KB
testcase_26 AC 61 ms
75,872 KB
testcase_27 AC 64 ms
75,892 KB
testcase_28 AC 66 ms
76,360 KB
testcase_29 AC 52 ms
73,676 KB
testcase_30 AC 54 ms
73,728 KB
testcase_31 AC 41 ms
56,376 KB
testcase_32 AC 40 ms
55,852 KB
testcase_33 AC 41 ms
56,404 KB
testcase_34 AC 41 ms
56,052 KB
testcase_35 AC 39 ms
55,244 KB
testcase_36 AC 42 ms
56,144 KB
testcase_37 AC 41 ms
56,280 KB
testcase_38 AC 42 ms
56,532 KB
testcase_39 AC 40 ms
56,024 KB
testcase_40 AC 43 ms
55,572 KB
testcase_41 AC 62 ms
76,040 KB
testcase_42 AC 67 ms
75,964 KB
testcase_43 AC 67 ms
76,132 KB
testcase_44 AC 62 ms
76,372 KB
testcase_45 AC 69 ms
76,000 KB
testcase_46 AC 67 ms
76,376 KB
testcase_47 AC 63 ms
76,024 KB
testcase_48 AC 64 ms
75,884 KB
testcase_49 AC 59 ms
75,984 KB
testcase_50 AC 69 ms
76,168 KB
testcase_51 AC 65 ms
76,292 KB
testcase_52 AC 63 ms
76,284 KB
testcase_53 AC 49 ms
68,264 KB
testcase_54 AC 52 ms
71,712 KB
testcase_55 AC 51 ms
71,668 KB
testcase_56 AC 51 ms
68,868 KB
testcase_57 AC 67 ms
76,180 KB
testcase_58 AC 54 ms
73,060 KB
testcase_59 AC 64 ms
75,996 KB
testcase_60 AC 62 ms
76,196 KB
testcase_61 AC 40 ms
54,064 KB
testcase_62 AC 40 ms
54,316 KB
testcase_63 AC 40 ms
53,792 KB
testcase_64 AC 37 ms
52,624 KB
testcase_65 AC 40 ms
55,288 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
S = input()
T = input()
if S == T:
    print("Yes")
    exit()

from collections import defaultdict
dic = defaultdict(int)
for i in range(N):
    if S[i] > T[i]:
        print("No")
        exit()
    elif S[i] < T[i]:
        dic[(S[i],T[i])] += 1
if dic[('A','B')] == 0:
    print("No")
    exit()
if dic[('A','B')] != dic[('B','C')]:
    print("No")
    exit()
print("Yes")
0