結果

問題 No.2629 A replace B replace C
ユーザー PNJPNJ
提出日時 2024-02-16 21:31:25
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 104 ms / 2,000 ms
コード長 465 bytes
コンパイル時間 417 ms
コンパイル使用メモリ 82,400 KB
実行使用メモリ 81,408 KB
最終ジャッジ日時 2024-09-28 19:46:15
合計ジャッジ時間 6,698 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
67,052 KB
testcase_01 AC 82 ms
78,160 KB
testcase_02 AC 83 ms
78,392 KB
testcase_03 AC 104 ms
80,916 KB
testcase_04 AC 61 ms
73,804 KB
testcase_05 AC 74 ms
76,744 KB
testcase_06 AC 54 ms
70,920 KB
testcase_07 AC 80 ms
78,100 KB
testcase_08 AC 79 ms
77,596 KB
testcase_09 AC 88 ms
79,548 KB
testcase_10 AC 93 ms
79,516 KB
testcase_11 AC 104 ms
80,252 KB
testcase_12 AC 102 ms
81,408 KB
testcase_13 AC 77 ms
77,128 KB
testcase_14 AC 87 ms
79,392 KB
testcase_15 AC 86 ms
79,428 KB
testcase_16 AC 85 ms
77,944 KB
testcase_17 AC 85 ms
78,652 KB
testcase_18 AC 71 ms
76,860 KB
testcase_19 AC 67 ms
76,376 KB
testcase_20 AC 71 ms
76,296 KB
testcase_21 AC 80 ms
78,608 KB
testcase_22 AC 67 ms
78,044 KB
testcase_23 AC 85 ms
78,512 KB
testcase_24 AC 79 ms
78,024 KB
testcase_25 AC 77 ms
77,916 KB
testcase_26 AC 66 ms
76,708 KB
testcase_27 AC 76 ms
77,192 KB
testcase_28 AC 79 ms
78,012 KB
testcase_29 AC 57 ms
73,556 KB
testcase_30 AC 66 ms
76,540 KB
testcase_31 AC 91 ms
78,932 KB
testcase_32 AC 70 ms
77,032 KB
testcase_33 AC 76 ms
77,172 KB
testcase_34 AC 69 ms
76,332 KB
testcase_35 AC 77 ms
77,264 KB
testcase_36 AC 81 ms
78,232 KB
testcase_37 AC 84 ms
78,972 KB
testcase_38 AC 80 ms
78,024 KB
testcase_39 AC 54 ms
73,048 KB
testcase_40 AC 75 ms
77,220 KB
testcase_41 AC 74 ms
77,708 KB
testcase_42 AC 95 ms
79,980 KB
testcase_43 AC 87 ms
79,212 KB
testcase_44 AC 78 ms
77,892 KB
testcase_45 AC 87 ms
79,636 KB
testcase_46 AC 91 ms
80,160 KB
testcase_47 AC 80 ms
78,132 KB
testcase_48 AC 72 ms
77,148 KB
testcase_49 AC 52 ms
69,844 KB
testcase_50 AC 95 ms
80,116 KB
testcase_51 AC 82 ms
78,460 KB
testcase_52 AC 47 ms
70,204 KB
testcase_53 AC 46 ms
62,792 KB
testcase_54 AC 43 ms
65,396 KB
testcase_55 AC 42 ms
64,984 KB
testcase_56 AC 42 ms
63,972 KB
testcase_57 AC 89 ms
79,060 KB
testcase_58 AC 43 ms
66,356 KB
testcase_59 AC 79 ms
78,384 KB
testcase_60 AC 46 ms
69,780 KB
testcase_61 AC 34 ms
51,744 KB
testcase_62 AC 34 ms
52,688 KB
testcase_63 AC 35 ms
52,416 KB
testcase_64 AC 33 ms
52,772 KB
testcase_65 AC 35 ms
53,420 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
S = input()
T = input()
ans = 'Yes'
B = []
C = []
for i in range(N):
  if S[i] == T[i]:
    continue
  if T[i] == 'A':
    ans = 'No'
  elif T[i] == 'B':
    if S[i] == 'A':
      B.append((0,i))
    else:
      ans = 'No'
  else:
    if S[i] == 'A':
      B.append((1,i))
    else:
      C.append(i)

B.sort()
while len(B) and len(C):
  f,i = B.pop()
  j = C.pop()
  if f:
    C.append(i)
if len(B):
  ans = 'No'
if len(C):
  ans = 'No'
print(ans)
0