結果

問題 No.2629 A replace B replace C
ユーザー rlangevinrlangevin
提出日時 2024-02-16 21:28:00
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 321 bytes
コンパイル時間 207 ms
コンパイル使用メモリ 82,684 KB
実行使用メモリ 75,208 KB
最終ジャッジ日時 2024-09-28 19:43:41
合計ジャッジ時間 4,630 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 48 ms
75,208 KB
testcase_01 WA -
testcase_02 AC 41 ms
61,428 KB
testcase_03 AC 47 ms
68,560 KB
testcase_04 AC 36 ms
55,680 KB
testcase_05 AC 39 ms
60,860 KB
testcase_06 AC 40 ms
60,216 KB
testcase_07 WA -
testcase_08 AC 42 ms
62,956 KB
testcase_09 AC 43 ms
64,588 KB
testcase_10 WA -
testcase_11 AC 45 ms
64,000 KB
testcase_12 WA -
testcase_13 WA -
testcase_14 AC 43 ms
63,572 KB
testcase_15 AC 46 ms
62,960 KB
testcase_16 AC 41 ms
61,724 KB
testcase_17 AC 43 ms
63,812 KB
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 AC 43 ms
64,412 KB
testcase_22 AC 40 ms
61,504 KB
testcase_23 AC 44 ms
64,536 KB
testcase_24 AC 43 ms
63,932 KB
testcase_25 AC 42 ms
61,936 KB
testcase_26 AC 43 ms
61,708 KB
testcase_27 AC 41 ms
59,416 KB
testcase_28 AC 44 ms
64,636 KB
testcase_29 AC 41 ms
59,796 KB
testcase_30 AC 40 ms
57,932 KB
testcase_31 AC 46 ms
66,200 KB
testcase_32 AC 45 ms
65,788 KB
testcase_33 AC 49 ms
71,008 KB
testcase_34 AC 44 ms
63,608 KB
testcase_35 AC 47 ms
64,928 KB
testcase_36 AC 48 ms
68,504 KB
testcase_37 AC 46 ms
66,956 KB
testcase_38 AC 46 ms
67,204 KB
testcase_39 AC 42 ms
63,752 KB
testcase_40 AC 47 ms
66,624 KB
testcase_41 AC 41 ms
61,504 KB
testcase_42 AC 43 ms
63,244 KB
testcase_43 AC 42 ms
63,016 KB
testcase_44 AC 44 ms
63,248 KB
testcase_45 AC 44 ms
65,116 KB
testcase_46 AC 47 ms
67,212 KB
testcase_47 AC 43 ms
64,824 KB
testcase_48 AC 42 ms
60,808 KB
testcase_49 AC 41 ms
61,400 KB
testcase_50 AC 46 ms
63,496 KB
testcase_51 AC 42 ms
62,556 KB
testcase_52 WA -
testcase_53 WA -
testcase_54 WA -
testcase_55 WA -
testcase_56 WA -
testcase_57 AC 43 ms
62,240 KB
testcase_58 WA -
testcase_59 AC 45 ms
65,436 KB
testcase_60 WA -
testcase_61 AC 34 ms
53,024 KB
testcase_62 AC 34 ms
53,124 KB
testcase_63 AC 32 ms
52,956 KB
testcase_64 AC 32 ms
52,736 KB
testcase_65 AC 33 ms
51,824 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
S = list(input())
T = list(input())
s = [S.count("A"), S.count("B"), S.count("C")]
t = [T.count("A"), T.count("B"), T.count("C")]
if s[1] == 0:
    if s == t:
        print("Yes")
    else:
        print("No")
else:
    if s[1] == t[1] and s[0] >= t[0]:
        print("Yes")
    else:
        print("No")
0