結果

問題 No.2629 A replace B replace C
ユーザー moon17moon17
提出日時 2024-02-18 23:43:24
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 58 ms / 2,000 ms
コード長 445 bytes
コンパイル時間 321 ms
コンパイル使用メモリ 82,316 KB
実行使用メモリ 76,104 KB
最終ジャッジ日時 2024-09-29 00:56:38
合計ジャッジ時間 5,061 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
68,100 KB
testcase_01 AC 45 ms
70,660 KB
testcase_02 AC 44 ms
68,600 KB
testcase_03 AC 48 ms
72,976 KB
testcase_04 AC 46 ms
64,700 KB
testcase_05 AC 48 ms
65,736 KB
testcase_06 AC 37 ms
59,780 KB
testcase_07 AC 46 ms
73,424 KB
testcase_08 AC 50 ms
75,088 KB
testcase_09 AC 54 ms
75,548 KB
testcase_10 AC 46 ms
69,076 KB
testcase_11 AC 55 ms
75,324 KB
testcase_12 AC 47 ms
71,632 KB
testcase_13 AC 46 ms
70,628 KB
testcase_14 AC 54 ms
75,888 KB
testcase_15 AC 53 ms
75,272 KB
testcase_16 AC 47 ms
67,496 KB
testcase_17 AC 41 ms
67,916 KB
testcase_18 AC 44 ms
72,192 KB
testcase_19 AC 40 ms
65,496 KB
testcase_20 AC 45 ms
70,132 KB
testcase_21 AC 54 ms
75,628 KB
testcase_22 AC 51 ms
75,564 KB
testcase_23 AC 53 ms
75,872 KB
testcase_24 AC 52 ms
76,104 KB
testcase_25 AC 53 ms
75,216 KB
testcase_26 AC 54 ms
75,088 KB
testcase_27 AC 52 ms
75,160 KB
testcase_28 AC 58 ms
75,488 KB
testcase_29 AC 51 ms
75,744 KB
testcase_30 AC 49 ms
70,904 KB
testcase_31 AC 34 ms
53,696 KB
testcase_32 AC 37 ms
54,808 KB
testcase_33 AC 35 ms
54,516 KB
testcase_34 AC 32 ms
54,860 KB
testcase_35 AC 34 ms
54,124 KB
testcase_36 AC 33 ms
55,008 KB
testcase_37 AC 32 ms
54,556 KB
testcase_38 AC 36 ms
54,836 KB
testcase_39 AC 35 ms
53,008 KB
testcase_40 AC 33 ms
54,316 KB
testcase_41 AC 49 ms
75,488 KB
testcase_42 AC 54 ms
75,508 KB
testcase_43 AC 55 ms
75,308 KB
testcase_44 AC 54 ms
75,280 KB
testcase_45 AC 58 ms
75,868 KB
testcase_46 AC 58 ms
75,560 KB
testcase_47 AC 54 ms
75,612 KB
testcase_48 AC 54 ms
75,280 KB
testcase_49 AC 48 ms
75,020 KB
testcase_50 AC 51 ms
75,428 KB
testcase_51 AC 51 ms
75,560 KB
testcase_52 AC 48 ms
75,444 KB
testcase_53 AC 40 ms
66,868 KB
testcase_54 AC 42 ms
71,084 KB
testcase_55 AC 41 ms
72,204 KB
testcase_56 AC 43 ms
66,296 KB
testcase_57 AC 53 ms
75,212 KB
testcase_58 AC 43 ms
71,632 KB
testcase_59 AC 56 ms
75,872 KB
testcase_60 AC 48 ms
75,256 KB
testcase_61 AC 32 ms
52,900 KB
testcase_62 AC 33 ms
52,500 KB
testcase_63 AC 31 ms
53,428 KB
testcase_64 AC 31 ms
53,564 KB
testcase_65 AC 31 ms
53,700 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n=int(input())
s=input()
t=input()
a0=a1=b=0
for i,j in zip(s,t):
  k=i+j
  if i==j:
    continue
  if k=='BA' or i=='C':
    exit(print('No'))
  if k=='AC':
    a1+=1
  if k=='AB':
    a0+=1
  if k=='BC':
    b+=1
#if a0+a1*2<b:
#  exit(print('No'))
if a0+a1*2==b:
  exit(print('Yes'))
s=set()
while (a0,a1,b)not in s:
  s|={(a0,a1,b)}
#  print(a0,a1,b,s)
  j=min(a1,b)
  a1-=j
  a0+=j
  b+=j
  if a0+a1*2==b:
    exit(print('Yes'))
print('No')
0