結果

問題 No.717 ファッションへのこだわり
ユーザー tsunabittsunabit
提出日時 2019-06-26 21:57:52
言語 Java21
(openjdk 21)
結果
AC  
実行時間 205 ms / 2,000 ms
コード長 607 bytes
コンパイル時間 3,577 ms
コンパイル使用メモリ 74,712 KB
実行使用メモリ 43,312 KB
最終ジャッジ日時 2024-06-26 04:56:34
合計ジャッジ時間 6,452 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 133 ms
41,432 KB
testcase_01 AC 135 ms
41,352 KB
testcase_02 AC 133 ms
41,232 KB
testcase_03 AC 135 ms
41,688 KB
testcase_04 AC 134 ms
41,424 KB
testcase_05 AC 136 ms
41,424 KB
testcase_06 AC 179 ms
42,016 KB
testcase_07 AC 181 ms
43,168 KB
testcase_08 AC 197 ms
43,312 KB
testcase_09 AC 205 ms
43,068 KB
testcase_10 AC 179 ms
42,128 KB
testcase_11 AC 186 ms
43,164 KB
testcase_12 AC 186 ms
43,008 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import java.io.*;
import java.math.*;

public class No717 {
    public static void main(String[] args) {
    	Scanner sc = new Scanner(System.in);
    	int n = sc.nextInt();
    	int m = sc.nextInt();
    	String s = sc.next();
    	String t = sc.next();
    	int c = 0;
    	c += s.replaceAll("B", "").length() < t.replaceAll("B", "").length()? s.replaceAll("B", "").length() : t.replaceAll("B", "").length();
    	c += s.replaceAll("A", "").length() < t.replaceAll("A", "").length()? s.replaceAll("A", "").length() : t.replaceAll("A", "").length();
    	System.out.println(c);
    }
}
0