結果

問題 No.717 ファッションへのこだわり
ユーザー tentententen
提出日時 2020-10-09 09:14:28
言語 Java21
(openjdk 21)
結果
AC  
実行時間 164 ms / 2,000 ms
コード長 675 bytes
コンパイル時間 2,884 ms
コンパイル使用メモリ 74,228 KB
実行使用メモリ 41,668 KB
最終ジャッジ日時 2024-07-20 06:39:58
合計ジャッジ時間 4,366 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 105 ms
40,116 KB
testcase_01 AC 113 ms
41,276 KB
testcase_02 AC 115 ms
41,132 KB
testcase_03 AC 115 ms
41,180 KB
testcase_04 AC 118 ms
41,056 KB
testcase_05 AC 112 ms
41,012 KB
testcase_06 AC 114 ms
41,156 KB
testcase_07 AC 149 ms
41,540 KB
testcase_08 AC 164 ms
41,596 KB
testcase_09 AC 136 ms
41,668 KB
testcase_10 AC 135 ms
41,172 KB
testcase_11 AC 143 ms
41,528 KB
testcase_12 AC 127 ms
41,484 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

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