結果

問題 No.717 ファッションへのこだわり
ユーザー rlangevinrlangevin
提出日時 2024-07-08 12:19:33
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 41 ms / 2,000 ms
コード長 156 bytes
コンパイル時間 293 ms
コンパイル使用メモリ 82,208 KB
実行使用メモリ 61,656 KB
最終ジャッジ日時 2024-07-08 12:19:36
合計ジャッジ時間 1,374 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
53,212 KB
testcase_01 AC 37 ms
53,728 KB
testcase_02 AC 37 ms
54,668 KB
testcase_03 AC 35 ms
53,108 KB
testcase_04 AC 35 ms
53,888 KB
testcase_05 AC 34 ms
54,656 KB
testcase_06 AC 39 ms
59,904 KB
testcase_07 AC 40 ms
61,508 KB
testcase_08 AC 41 ms
61,656 KB
testcase_09 AC 39 ms
60,708 KB
testcase_10 AC 38 ms
60,668 KB
testcase_11 AC 38 ms
60,428 KB
testcase_12 AC 38 ms
60,692 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import *

N, M = map(int, input().split())
CS = Counter(input())
CT = Counter(input())
print(min(CS["A"], CT["A"]) + min(CS["B"], CT["B"]))
0