結果

問題 No.717 ファッションへのこだわり
ユーザー トミートミー
提出日時 2024-05-31 11:46:43
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 44 ms / 2,000 ms
コード長 294 bytes
コンパイル時間 358 ms
コンパイル使用メモリ 82,528 KB
実行使用メモリ 64,552 KB
最終ジャッジ日時 2024-05-31 11:46:45
合計ジャッジ時間 1,359 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
52,272 KB
testcase_01 AC 31 ms
52,312 KB
testcase_02 AC 33 ms
53,680 KB
testcase_03 AC 32 ms
52,504 KB
testcase_04 AC 32 ms
52,436 KB
testcase_05 AC 32 ms
52,700 KB
testcase_06 AC 32 ms
53,048 KB
testcase_07 AC 42 ms
62,396 KB
testcase_08 AC 43 ms
64,552 KB
testcase_09 AC 44 ms
63,320 KB
testcase_10 AC 38 ms
62,080 KB
testcase_11 AC 41 ms
62,064 KB
testcase_12 AC 40 ms
62,492 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,m=map(int,input().split())
s=list(map(lambda x:x,input()))
t=list(map(lambda x:x,input()))
p={'A':0,'B':0}
q={'A':0,'B':0}
for i in s:
    p[i]=p[i]+1 if i in p.keys() else 1
for i in t:
    q[i]=q[i]+1 if i in q.keys() else 1
ans=min(p['A'],q['A'])+min(p['B'],q['B'])
# print(p,q)
print(ans)
0