結果

問題 No.2629 A replace B replace C
ユーザー nikoro256nikoro256
提出日時 2024-02-16 21:37:12
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 51 ms / 2,000 ms
コード長 384 bytes
コンパイル時間 168 ms
コンパイル使用メモリ 82,312 KB
実行使用メモリ 67,808 KB
最終ジャッジ日時 2024-09-28 19:51:29
合計ジャッジ時間 4,745 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 46 ms
67,808 KB
testcase_01 AC 46 ms
63,608 KB
testcase_02 AC 46 ms
64,228 KB
testcase_03 AC 47 ms
65,736 KB
testcase_04 AC 45 ms
64,788 KB
testcase_05 AC 44 ms
63,972 KB
testcase_06 AC 41 ms
60,096 KB
testcase_07 AC 44 ms
63,604 KB
testcase_08 AC 47 ms
65,824 KB
testcase_09 AC 49 ms
66,304 KB
testcase_10 AC 47 ms
64,256 KB
testcase_11 AC 49 ms
66,428 KB
testcase_12 AC 48 ms
65,088 KB
testcase_13 AC 45 ms
64,220 KB
testcase_14 AC 49 ms
65,688 KB
testcase_15 AC 46 ms
65,180 KB
testcase_16 AC 46 ms
64,028 KB
testcase_17 AC 47 ms
63,932 KB
testcase_18 AC 48 ms
64,892 KB
testcase_19 AC 45 ms
64,656 KB
testcase_20 AC 47 ms
64,924 KB
testcase_21 AC 48 ms
65,840 KB
testcase_22 AC 47 ms
63,860 KB
testcase_23 AC 49 ms
65,956 KB
testcase_24 AC 49 ms
66,172 KB
testcase_25 AC 47 ms
65,676 KB
testcase_26 AC 50 ms
66,540 KB
testcase_27 AC 47 ms
65,304 KB
testcase_28 AC 47 ms
66,080 KB
testcase_29 AC 50 ms
65,232 KB
testcase_30 AC 49 ms
63,760 KB
testcase_31 AC 35 ms
54,896 KB
testcase_32 AC 34 ms
54,248 KB
testcase_33 AC 36 ms
55,260 KB
testcase_34 AC 37 ms
54,376 KB
testcase_35 AC 36 ms
53,744 KB
testcase_36 AC 35 ms
54,304 KB
testcase_37 AC 36 ms
53,740 KB
testcase_38 AC 34 ms
54,172 KB
testcase_39 AC 34 ms
53,656 KB
testcase_40 AC 33 ms
55,376 KB
testcase_41 AC 46 ms
65,304 KB
testcase_42 AC 47 ms
65,872 KB
testcase_43 AC 48 ms
65,352 KB
testcase_44 AC 48 ms
65,564 KB
testcase_45 AC 48 ms
66,812 KB
testcase_46 AC 51 ms
67,488 KB
testcase_47 AC 47 ms
65,316 KB
testcase_48 AC 47 ms
65,364 KB
testcase_49 AC 46 ms
64,380 KB
testcase_50 AC 47 ms
65,892 KB
testcase_51 AC 49 ms
64,380 KB
testcase_52 AC 47 ms
64,944 KB
testcase_53 AC 42 ms
62,624 KB
testcase_54 AC 43 ms
63,672 KB
testcase_55 AC 44 ms
64,268 KB
testcase_56 AC 41 ms
62,776 KB
testcase_57 AC 47 ms
65,536 KB
testcase_58 AC 44 ms
63,296 KB
testcase_59 AC 51 ms
66,620 KB
testcase_60 AC 46 ms
65,048 KB
testcase_61 AC 34 ms
52,404 KB
testcase_62 AC 34 ms
53,152 KB
testcase_63 AC 34 ms
53,312 KB
testcase_64 AC 34 ms
53,300 KB
testcase_65 AC 34 ms
52,316 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N=int(input())
S=input()
T=input()
firstBC=0
ab=0
bc=0
for i in range(N):
    if S[i]=='A' and T[i]=='B':
        ab+=1
    elif S[i]=='B' and T[i]=='C':
        firstBC+=1
        bc+=1
    elif S[i]=='A' and T[i]=='C':
        ab+=1
        bc+=1
    elif S[i]!=T[i]:
        print('No')
        exit(0)
if (ab==bc and firstBC>0) or ab==bc==0:
    print('Yes')
else:
    print('No')
0