結果

問題 No.717 ファッションへのこだわり
ユーザー YamaKasaYamaKasa
提出日時 2018-07-27 22:30:04
言語 Java21
(openjdk 21)
結果
AC  
実行時間 160 ms / 2,000 ms
コード長 618 bytes
コンパイル時間 2,091 ms
コンパイル使用メモリ 74,296 KB
実行使用メモリ 41,948 KB
最終ジャッジ日時 2024-07-05 01:36:49
合計ジャッジ時間 4,509 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 126 ms
41,500 KB
testcase_01 AC 110 ms
40,184 KB
testcase_02 AC 127 ms
41,428 KB
testcase_03 AC 128 ms
41,472 KB
testcase_04 AC 125 ms
41,576 KB
testcase_05 AC 129 ms
41,624 KB
testcase_06 AC 126 ms
41,508 KB
testcase_07 AC 147 ms
41,304 KB
testcase_08 AC 157 ms
41,268 KB
testcase_09 AC 160 ms
41,948 KB
testcase_10 AC 128 ms
40,348 KB
testcase_11 AC 155 ms
41,376 KB
testcase_12 AC 143 ms
41,756 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {
	public static void main(String[] args) {
		Scanner scan = new Scanner(System.in);
		int N = scan.nextInt();
		int M = scan.nextInt();
		String S = scan.next();
		String T = scan.next();
		scan.close();
		int a1 = 0;
		int b1 = 0;
		int a2 = 0;
		int b2 = 0;
		for(int i = 0; i < N; i++) {
			char c = S.charAt(i);
			if(c == 'A') {
				a1 ++;
			}else {
				b1 ++;
			}
		}
		for(int i = 0; i < M; i++) {
			char c = T.charAt(i);
			if(c == 'A') {
				a2 ++;
			}else {
				b2 ++;
			}
		}
		int ans = Math.min(a1, a2) + Math.min(b1, b2);
		System.out.println(ans);
	}
}
0