結果

問題 No.717 ファッションへのこだわり
ユーザー トミートミー
提出日時 2024-05-31 11:45:18
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 259 bytes
コンパイル時間 694 ms
コンパイル使用メモリ 82,512 KB
実行使用メモリ 70,124 KB
最終ジャッジ日時 2024-05-31 11:45:20
合計ジャッジ時間 2,486 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
53,812 KB
testcase_01 RE -
testcase_02 AC 38 ms
53,200 KB
testcase_03 AC 38 ms
51,880 KB
testcase_04 AC 37 ms
52,824 KB
testcase_05 AC 39 ms
52,336 KB
testcase_06 AC 39 ms
52,744 KB
testcase_07 AC 48 ms
62,792 KB
testcase_08 AC 48 ms
63,772 KB
testcase_09 AC 47 ms
63,644 KB
testcase_10 RE -
testcase_11 AC 48 ms
63,332 KB
testcase_12 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

n,m=map(int,input().split())
s=list(map(lambda x:x,input()))
t=list(map(lambda x:x,input()))
p={}
q={}
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(ans)
0