結果

問題 No.2629 A replace B replace C
ユーザー hato336hato336
提出日時 2024-02-16 21:30:28
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 147 ms / 2,000 ms
コード長 1,157 bytes
コンパイル時間 356 ms
コンパイル使用メモリ 82,444 KB
実行使用メモリ 90,020 KB
最終ジャッジ日時 2024-09-28 19:45:34
合計ジャッジ時間 10,899 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 130 ms
89,708 KB
testcase_01 AC 136 ms
89,556 KB
testcase_02 AC 137 ms
89,472 KB
testcase_03 AC 144 ms
89,820 KB
testcase_04 AC 136 ms
89,420 KB
testcase_05 AC 135 ms
89,700 KB
testcase_06 AC 125 ms
89,568 KB
testcase_07 AC 139 ms
89,516 KB
testcase_08 AC 140 ms
89,484 KB
testcase_09 AC 141 ms
89,548 KB
testcase_10 AC 141 ms
89,704 KB
testcase_11 AC 145 ms
89,460 KB
testcase_12 AC 139 ms
89,612 KB
testcase_13 AC 144 ms
89,764 KB
testcase_14 AC 138 ms
89,760 KB
testcase_15 AC 137 ms
89,856 KB
testcase_16 AC 136 ms
89,712 KB
testcase_17 AC 137 ms
89,664 KB
testcase_18 AC 136 ms
89,840 KB
testcase_19 AC 136 ms
89,772 KB
testcase_20 AC 136 ms
89,588 KB
testcase_21 AC 138 ms
89,816 KB
testcase_22 AC 138 ms
89,348 KB
testcase_23 AC 140 ms
89,704 KB
testcase_24 AC 140 ms
89,608 KB
testcase_25 AC 138 ms
89,604 KB
testcase_26 AC 138 ms
89,616 KB
testcase_27 AC 137 ms
89,468 KB
testcase_28 AC 137 ms
89,700 KB
testcase_29 AC 135 ms
89,760 KB
testcase_30 AC 137 ms
89,656 KB
testcase_31 AC 128 ms
88,948 KB
testcase_32 AC 122 ms
89,308 KB
testcase_33 AC 137 ms
89,388 KB
testcase_34 AC 123 ms
89,376 KB
testcase_35 AC 126 ms
89,244 KB
testcase_36 AC 129 ms
89,196 KB
testcase_37 AC 129 ms
89,216 KB
testcase_38 AC 126 ms
89,340 KB
testcase_39 AC 123 ms
89,176 KB
testcase_40 AC 125 ms
89,160 KB
testcase_41 AC 144 ms
89,852 KB
testcase_42 AC 139 ms
89,700 KB
testcase_43 AC 142 ms
89,740 KB
testcase_44 AC 141 ms
89,796 KB
testcase_45 AC 144 ms
89,672 KB
testcase_46 AC 143 ms
89,908 KB
testcase_47 AC 138 ms
89,748 KB
testcase_48 AC 135 ms
89,408 KB
testcase_49 AC 138 ms
89,352 KB
testcase_50 AC 141 ms
89,776 KB
testcase_51 AC 141 ms
89,672 KB
testcase_52 AC 135 ms
89,700 KB
testcase_53 AC 139 ms
89,488 KB
testcase_54 AC 134 ms
89,524 KB
testcase_55 AC 136 ms
89,740 KB
testcase_56 AC 135 ms
89,588 KB
testcase_57 AC 140 ms
90,020 KB
testcase_58 AC 133 ms
89,844 KB
testcase_59 AC 147 ms
89,880 KB
testcase_60 AC 136 ms
89,648 KB
testcase_61 AC 116 ms
85,744 KB
testcase_62 AC 118 ms
85,688 KB
testcase_63 AC 118 ms
85,684 KB
testcase_64 AC 117 ms
85,852 KB
testcase_65 AC 115 ms
85,920 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import collections,sys,math,functools,operator,itertools,bisect,heapq,decimal,string,time,random
#sys.setrecursionlimit(10**9)
#sys.set_int_max_str_digits(0)
#input = sys.stdin.readline
n = int(input())
#alist = list(map(int,input().split()))
#alist = []
s = input()
#n,m = map(int,input().split())
#for i in range(n):
#    alist.append(list(map(int,input().split())))
t = input()

ss = []
tt = []
ab = 0
ac = 0
bc = 0
for i in range(n):
    if s[i] == 'A' and t[i] == 'A':
        continue
    if s[i] == 'A' and t[i] == 'B':
        ab += 1
    if s[i] == 'A' and t[i] == 'C':
        ac += 1
    if s[i] == 'B' and t[i] == 'A':
        print('No')
        exit()
    if s[i] == 'B' and t[i] == 'B':
        continue
    if s[i] == 'B' and t[i] == 'C':
        bc += 1
    if s[i] == 'C' and t[i] == 'A':
        print('No')
        exit()
    if s[i] == 'C' and t[i] == 'B':
        print('No')
        exit()
    if s[i] == 'C' and t[i] == 'C':
        continue
    
if bc == 0:
    if ac == ab == 0:
        print('Yes')
        exit()
    print('No')
    exit()
else:
    ac = 0
    if ab == bc:
        print('Yes')
    else:
        print('No')
    
0