結果

問題 No.2629 A replace B replace C
ユーザー FromBooskaFromBooska
提出日時 2024-02-17 07:22:16
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 76 ms / 2,000 ms
コード長 777 bytes
コンパイル時間 335 ms
コンパイル使用メモリ 82,248 KB
実行使用メモリ 76,700 KB
最終ジャッジ日時 2024-09-28 23:33:32
合計ジャッジ時間 6,080 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 47 ms
68,988 KB
testcase_01 AC 63 ms
74,204 KB
testcase_02 AC 60 ms
72,864 KB
testcase_03 AC 75 ms
76,700 KB
testcase_04 AC 49 ms
65,012 KB
testcase_05 AC 54 ms
70,564 KB
testcase_06 AC 49 ms
66,724 KB
testcase_07 AC 56 ms
71,220 KB
testcase_08 AC 59 ms
73,360 KB
testcase_09 AC 69 ms
76,056 KB
testcase_10 AC 69 ms
76,044 KB
testcase_11 AC 71 ms
76,372 KB
testcase_12 AC 72 ms
76,120 KB
testcase_13 AC 56 ms
72,568 KB
testcase_14 AC 70 ms
76,176 KB
testcase_15 AC 67 ms
76,056 KB
testcase_16 AC 58 ms
73,952 KB
testcase_17 AC 57 ms
72,708 KB
testcase_18 AC 55 ms
72,372 KB
testcase_19 AC 53 ms
68,208 KB
testcase_20 AC 53 ms
68,476 KB
testcase_21 AC 63 ms
76,120 KB
testcase_22 AC 60 ms
73,564 KB
testcase_23 AC 62 ms
76,092 KB
testcase_24 AC 58 ms
73,148 KB
testcase_25 AC 60 ms
74,072 KB
testcase_26 AC 53 ms
70,116 KB
testcase_27 AC 58 ms
72,392 KB
testcase_28 AC 65 ms
76,160 KB
testcase_29 AC 50 ms
67,860 KB
testcase_30 AC 53 ms
68,648 KB
testcase_31 AC 72 ms
75,856 KB
testcase_32 AC 70 ms
75,976 KB
testcase_33 AC 76 ms
76,436 KB
testcase_34 AC 66 ms
75,916 KB
testcase_35 AC 69 ms
76,312 KB
testcase_36 AC 73 ms
76,272 KB
testcase_37 AC 73 ms
76,524 KB
testcase_38 AC 70 ms
76,032 KB
testcase_39 AC 59 ms
73,836 KB
testcase_40 AC 69 ms
75,992 KB
testcase_41 AC 58 ms
70,280 KB
testcase_42 AC 69 ms
76,084 KB
testcase_43 AC 67 ms
76,420 KB
testcase_44 AC 57 ms
72,536 KB
testcase_45 AC 69 ms
76,048 KB
testcase_46 AC 67 ms
76,452 KB
testcase_47 AC 57 ms
73,620 KB
testcase_48 AC 56 ms
71,900 KB
testcase_49 AC 52 ms
68,920 KB
testcase_50 AC 69 ms
76,324 KB
testcase_51 AC 66 ms
76,080 KB
testcase_52 AC 54 ms
70,888 KB
testcase_53 AC 51 ms
64,076 KB
testcase_54 AC 53 ms
66,248 KB
testcase_55 AC 51 ms
66,428 KB
testcase_56 AC 50 ms
64,924 KB
testcase_57 AC 67 ms
76,176 KB
testcase_58 AC 53 ms
67,800 KB
testcase_59 AC 65 ms
76,216 KB
testcase_60 AC 56 ms
69,616 KB
testcase_61 AC 42 ms
54,536 KB
testcase_62 AC 42 ms
53,780 KB
testcase_63 AC 43 ms
54,692 KB
testcase_64 AC 43 ms
53,864 KB
testcase_65 AC 42 ms
54,800 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# STで異なる組だけを見る
# [BC, AC]を[CC, BC]に変える、[AB, BC]を[BB, CC]に変える

N = int(input())
S = input()
T = input()

from collections import defaultdict
dic = defaultdict(int)

for i in range(N):
    if S[i] == T[i]:
        continue
    dic[(S[i], T[i])] += 1
    
#print(dic)

if dic[('B', 'C')] > 0 and dic[('A', 'C')] > 0 and dic[('A', 'B')] > 0:
    ABACBC = min(dic[('A', 'B')], dic[('A', 'C')], dic[('B', 'C')])
    dic[('A', 'C')] = 0
    dic[('A', 'B')] -= ABACBC
    dic[('B', 'C')] -= ABACBC

ABBC = min(dic[('A', 'B')], dic[('B', 'C')])
dic[('A', 'B')] -= ABBC
dic[('B', 'C')] -= ABBC
    
ans = 'Yes'
for i in ['A', 'B', 'C']:
    for j in ['A', 'B', 'C']:
        if dic[(i, j)] > 0:
            ans = 'No'
print(ans)

#print(dic)



0