結果

問題 No.717 ファッションへのこだわり
ユーザー roaris
提出日時 2020-12-04 17:08:28
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 51 ms / 2,000 ms
コード長 214 bytes
コンパイル時間 1,279 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 60,672 KB
最終ジャッジ日時 2024-09-15 03:48:45
合計ジャッジ時間 1,581 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 10
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline
from collections import *

N, M = map(int, input().split())
S = input()[:-1]
T = input()[:-1]
c1 = Counter(S)
c2 = Counter(T)
print(min(c1['A'], c2['A'])+min(c1['B'], c2['B']))
0