結果

問題 No.2629 A replace B replace C
ユーザー PNJPNJ
提出日時 2024-02-16 21:30:30
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 456 bytes
コンパイル時間 405 ms
コンパイル使用メモリ 82,564 KB
実行使用メモリ 81,280 KB
最終ジャッジ日時 2024-09-28 19:45:22
合計ジャッジ時間 5,581 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
66,964 KB
testcase_01 AC 57 ms
74,736 KB
testcase_02 AC 59 ms
74,816 KB
testcase_03 AC 68 ms
81,112 KB
testcase_04 AC 52 ms
68,488 KB
testcase_05 AC 53 ms
72,168 KB
testcase_06 AC 46 ms
66,376 KB
testcase_07 AC 55 ms
73,160 KB
testcase_08 WA -
testcase_09 AC 55 ms
75,052 KB
testcase_10 AC 61 ms
76,532 KB
testcase_11 AC 60 ms
77,668 KB
testcase_12 AC 69 ms
81,280 KB
testcase_13 AC 55 ms
72,388 KB
testcase_14 AC 56 ms
75,028 KB
testcase_15 AC 63 ms
76,452 KB
testcase_16 AC 57 ms
74,516 KB
testcase_17 AC 57 ms
75,332 KB
testcase_18 AC 55 ms
73,632 KB
testcase_19 AC 49 ms
68,628 KB
testcase_20 AC 54 ms
71,076 KB
testcase_21 AC 56 ms
73,976 KB
testcase_22 AC 52 ms
71,828 KB
testcase_23 WA -
testcase_24 AC 52 ms
70,892 KB
testcase_25 AC 50 ms
71,512 KB
testcase_26 WA -
testcase_27 AC 51 ms
69,396 KB
testcase_28 WA -
testcase_29 WA -
testcase_30 AC 49 ms
67,000 KB
testcase_31 AC 58 ms
75,812 KB
testcase_32 AC 56 ms
73,500 KB
testcase_33 AC 59 ms
74,116 KB
testcase_34 AC 54 ms
70,520 KB
testcase_35 AC 56 ms
72,408 KB
testcase_36 AC 56 ms
73,964 KB
testcase_37 AC 58 ms
75,504 KB
testcase_38 AC 54 ms
73,640 KB
testcase_39 AC 49 ms
69,016 KB
testcase_40 AC 53 ms
72,996 KB
testcase_41 AC 50 ms
70,664 KB
testcase_42 AC 54 ms
73,636 KB
testcase_43 AC 54 ms
73,776 KB
testcase_44 AC 51 ms
70,188 KB
testcase_45 AC 55 ms
76,128 KB
testcase_46 AC 54 ms
74,628 KB
testcase_47 AC 49 ms
71,308 KB
testcase_48 AC 49 ms
70,028 KB
testcase_49 AC 47 ms
67,080 KB
testcase_50 AC 57 ms
75,776 KB
testcase_51 WA -
testcase_52 AC 43 ms
67,184 KB
testcase_53 AC 40 ms
61,192 KB
testcase_54 AC 41 ms
63,456 KB
testcase_55 AC 40 ms
62,736 KB
testcase_56 AC 41 ms
62,252 KB
testcase_57 WA -
testcase_58 AC 43 ms
63,256 KB
testcase_59 AC 54 ms
73,004 KB
testcase_60 AC 44 ms
65,932 KB
testcase_61 AC 33 ms
53,024 KB
testcase_62 AC 35 ms
52,160 KB
testcase_63 AC 34 ms
53,784 KB
testcase_64 AC 35 ms
53,264 KB
testcase_65 AC 35 ms
52,492 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)

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