結果

問題 No.2629 A replace B replace C
ユーザー ntudantuda
提出日時 2024-02-17 13:34:02
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 383 bytes
コンパイル時間 180 ms
コンパイル使用メモリ 82,564 KB
実行使用メモリ 76,956 KB
最終ジャッジ日時 2024-09-28 23:40:56
合計ジャッジ時間 4,957 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
55,796 KB
testcase_01 AC 50 ms
72,968 KB
testcase_02 AC 48 ms
71,452 KB
testcase_03 AC 54 ms
74,896 KB
testcase_04 AC 44 ms
65,696 KB
testcase_05 AC 44 ms
66,900 KB
testcase_06 AC 40 ms
62,524 KB
testcase_07 AC 53 ms
76,108 KB
testcase_08 AC 62 ms
76,156 KB
testcase_09 AC 61 ms
76,236 KB
testcase_10 AC 49 ms
71,568 KB
testcase_11 AC 64 ms
76,616 KB
testcase_12 AC 52 ms
73,724 KB
testcase_13 AC 51 ms
72,672 KB
testcase_14 AC 62 ms
76,340 KB
testcase_15 AC 58 ms
76,232 KB
testcase_16 AC 47 ms
70,844 KB
testcase_17 AC 46 ms
69,392 KB
testcase_18 AC 50 ms
73,096 KB
testcase_19 AC 44 ms
66,528 KB
testcase_20 AC 47 ms
70,724 KB
testcase_21 AC 61 ms
75,984 KB
testcase_22 AC 59 ms
76,264 KB
testcase_23 AC 60 ms
76,404 KB
testcase_24 AC 56 ms
76,064 KB
testcase_25 AC 59 ms
76,052 KB
testcase_26 AC 55 ms
76,108 KB
testcase_27 AC 55 ms
75,956 KB
testcase_28 AC 60 ms
76,408 KB
testcase_29 AC 46 ms
73,520 KB
testcase_30 AC 49 ms
72,984 KB
testcase_31 AC 36 ms
55,436 KB
testcase_32 AC 37 ms
55,808 KB
testcase_33 AC 37 ms
57,736 KB
testcase_34 AC 36 ms
55,472 KB
testcase_35 AC 35 ms
56,044 KB
testcase_36 AC 37 ms
56,224 KB
testcase_37 AC 35 ms
55,700 KB
testcase_38 AC 37 ms
56,160 KB
testcase_39 AC 36 ms
56,436 KB
testcase_40 AC 36 ms
55,436 KB
testcase_41 WA -
testcase_42 WA -
testcase_43 WA -
testcase_44 WA -
testcase_45 WA -
testcase_46 WA -
testcase_47 WA -
testcase_48 WA -
testcase_49 WA -
testcase_50 WA -
testcase_51 AC 59 ms
76,140 KB
testcase_52 AC 54 ms
76,080 KB
testcase_53 AC 45 ms
68,836 KB
testcase_54 AC 49 ms
72,900 KB
testcase_55 AC 47 ms
72,316 KB
testcase_56 AC 45 ms
69,100 KB
testcase_57 AC 60 ms
76,284 KB
testcase_58 AC 48 ms
72,644 KB
testcase_59 AC 57 ms
76,076 KB
testcase_60 AC 55 ms
76,080 KB
testcase_61 AC 35 ms
55,140 KB
testcase_62 AC 36 ms
54,900 KB
testcase_63 AC 35 ms
53,848 KB
testcase_64 AC 32 ms
52,344 KB
testcase_65 AC 36 ms
55,516 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
S = input()
T = input()
if S == T:
    print("Yes")
    exit()

from collections import defaultdict
dic = defaultdict(int)
for i in range(N):
    if S[i] > T[i]:
        print("No")
        exit()
    elif S[i] < T[i]:
        dic[(S[i],T[i])] += 1
if dic[('A','B')] == 0:
    print("No")
    exit()
if dic[('A','B')] != dic[('B','C')]:
    print("No")
print("Yes")
0