結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
53,500 KB
testcase_01 RE -
testcase_02 AC 40 ms
53,360 KB
testcase_03 AC 40 ms
52,964 KB
testcase_04 AC 39 ms
52,156 KB
testcase_05 AC 42 ms
52,000 KB
testcase_06 AC 41 ms
52,888 KB
testcase_07 AC 51 ms
62,532 KB
testcase_08 AC 54 ms
64,896 KB
testcase_09 AC 51 ms
63,348 KB
testcase_10 RE -
testcase_11 AC 49 ms
62,180 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