結果

問題 No.717 ファッションへのこだわり
ユーザー htensaihtensai
提出日時 2019-11-12 00:54:12
言語 Java21
(openjdk 21)
結果
AC  
実行時間 172 ms / 2,000 ms
コード長 600 bytes
コンパイル時間 2,164 ms
コンパイル使用メモリ 74,628 KB
実行使用メモリ 41,568 KB
最終ジャッジ日時 2024-09-15 11:38:49
合計ジャッジ時間 4,733 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 129 ms
41,124 KB
testcase_01 AC 127 ms
40,832 KB
testcase_02 AC 120 ms
40,140 KB
testcase_03 AC 129 ms
41,316 KB
testcase_04 AC 133 ms
41,080 KB
testcase_05 AC 131 ms
41,076 KB
testcase_06 AC 134 ms
41,288 KB
testcase_07 AC 147 ms
41,332 KB
testcase_08 AC 152 ms
41,304 KB
testcase_09 AC 172 ms
41,568 KB
testcase_10 AC 149 ms
41,260 KB
testcase_11 AC 163 ms
40,976 KB
testcase_12 AC 153 ms
41,512 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
	public static void main (String[] args) throws Exception {
		Scanner sc = new Scanner(System.in);
		int n = sc.nextInt();
		int m = sc.nextInt();
		char[] sArr = sc.next().toCharArray();
		int sa = 0;
		int sb = 0;
		for (char c : sArr) {
		    if (c == 'A') {
		        sa++;
		    } else {
		        sb++;
		    }
		}
		char[] tArr = sc.next().toCharArray();
		int ta = 0;
		int tb = 0;
		for (char c : tArr) {
		    if (c == 'A') {
		        ta++;
		    } else {
		        tb++;
		    }
		}
		System.out.println(Math.min(sa, ta) + Math.min(sb, tb));
	}
}
0