結果

問題 No.717 ファッションへのこだわり
ユーザー simamumusimamumu
提出日時 2018-07-27 22:24:53
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
AC  
実行時間 34 ms / 2,000 ms
コード長 409 bytes
コンパイル時間 89 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 11,136 KB
最終ジャッジ日時 2024-07-05 01:14:03
合計ジャッジ時間 1,168 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 10
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict
import sys,heapq,bisect,math,itertools,string
sys.setrecursionlimit(10**8)
INF = float('inf')
mod = 10**9+7
AtoZ = [chr(i) for i in range(65,65+26)]
atoz = [chr(i) for i in range(97,97+26)]

min_val = INF

N,M = map(int,input().split())
S = list(input())
T = list(input())
Sa = S.count('A')
Sb = S.count('B')
Ta = T.count('A')
Tb = T.count('B')
print(min(Sa,Ta)+min(Sb,Tb))
0