結果

問題 No.717 ファッションへのこだわり
ユーザー roarisroaris
提出日時 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
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
53,504 KB
testcase_01 AC 41 ms
53,376 KB
testcase_02 AC 45 ms
53,248 KB
testcase_03 AC 42 ms
53,632 KB
testcase_04 AC 43 ms
53,376 KB
testcase_05 AC 42 ms
53,596 KB
testcase_06 AC 51 ms
59,392 KB
testcase_07 AC 46 ms
59,776 KB
testcase_08 AC 47 ms
60,544 KB
testcase_09 AC 47 ms
60,672 KB
testcase_10 AC 48 ms
59,776 KB
testcase_11 AC 46 ms
59,776 KB
testcase_12 AC 46 ms
60,416 KB
権限があれば一括ダウンロードができます

ソースコード

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