結果

問題 No.2629 A replace B replace C
ユーザー ゼットゼット
提出日時 2024-02-16 21:54:41
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 53 ms / 2,000 ms
コード長 390 bytes
コンパイル時間 390 ms
コンパイル使用メモリ 82,412 KB
実行使用メモリ 67,044 KB
最終ジャッジ日時 2024-09-28 20:09:59
合計ジャッジ時間 4,832 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
62,220 KB
testcase_01 AC 50 ms
65,004 KB
testcase_02 AC 50 ms
65,160 KB
testcase_03 AC 50 ms
67,044 KB
testcase_04 AC 46 ms
63,752 KB
testcase_05 AC 46 ms
62,824 KB
testcase_06 AC 38 ms
59,804 KB
testcase_07 AC 46 ms
62,976 KB
testcase_08 AC 49 ms
64,684 KB
testcase_09 AC 49 ms
65,768 KB
testcase_10 AC 48 ms
64,656 KB
testcase_11 AC 52 ms
65,628 KB
testcase_12 AC 48 ms
66,016 KB
testcase_13 AC 47 ms
65,448 KB
testcase_14 AC 52 ms
64,940 KB
testcase_15 AC 49 ms
65,580 KB
testcase_16 AC 49 ms
64,868 KB
testcase_17 AC 49 ms
64,880 KB
testcase_18 AC 48 ms
65,172 KB
testcase_19 AC 47 ms
64,636 KB
testcase_20 AC 48 ms
65,412 KB
testcase_21 AC 50 ms
65,620 KB
testcase_22 AC 51 ms
65,384 KB
testcase_23 AC 53 ms
66,260 KB
testcase_24 AC 49 ms
65,568 KB
testcase_25 AC 48 ms
64,876 KB
testcase_26 AC 48 ms
65,236 KB
testcase_27 AC 49 ms
64,696 KB
testcase_28 AC 49 ms
65,296 KB
testcase_29 AC 49 ms
64,152 KB
testcase_30 AC 46 ms
63,428 KB
testcase_31 AC 36 ms
54,612 KB
testcase_32 AC 37 ms
54,096 KB
testcase_33 AC 37 ms
55,256 KB
testcase_34 AC 35 ms
54,248 KB
testcase_35 AC 35 ms
53,500 KB
testcase_36 AC 35 ms
54,204 KB
testcase_37 AC 36 ms
54,220 KB
testcase_38 AC 37 ms
54,812 KB
testcase_39 AC 36 ms
54,808 KB
testcase_40 AC 36 ms
53,696 KB
testcase_41 AC 51 ms
65,228 KB
testcase_42 AC 51 ms
65,224 KB
testcase_43 AC 50 ms
65,552 KB
testcase_44 AC 48 ms
64,744 KB
testcase_45 AC 51 ms
66,008 KB
testcase_46 AC 51 ms
66,268 KB
testcase_47 AC 50 ms
65,108 KB
testcase_48 AC 50 ms
64,420 KB
testcase_49 AC 50 ms
64,296 KB
testcase_50 AC 52 ms
65,032 KB
testcase_51 AC 49 ms
64,940 KB
testcase_52 AC 46 ms
64,132 KB
testcase_53 AC 45 ms
62,152 KB
testcase_54 AC 46 ms
62,284 KB
testcase_55 AC 45 ms
62,912 KB
testcase_56 AC 43 ms
61,156 KB
testcase_57 AC 50 ms
64,548 KB
testcase_58 AC 47 ms
62,624 KB
testcase_59 AC 50 ms
66,172 KB
testcase_60 AC 47 ms
64,052 KB
testcase_61 AC 33 ms
52,152 KB
testcase_62 AC 36 ms
52,400 KB
testcase_63 AC 35 ms
52,212 KB
testcase_64 AC 35 ms
52,488 KB
testcase_65 AC 35 ms
52,828 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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