結果
問題 | No.717 ファッションへのこだわり |
ユーザー | 37zigen |
提出日時 | 2018-07-27 22:48:11 |
言語 | Java (openjdk 23) |
結果 |
WA
|
実行時間 | - |
コード長 | 766 bytes |
コンパイル時間 | 2,049 ms |
コンパイル使用メモリ | 77,492 KB |
実行使用メモリ | 56,148 KB |
最終ジャッジ日時 | 2024-07-05 03:04:36 |
合計ジャッジ時間 | 4,910 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
ソースコード
import java.util.Arrays; import java.util.Scanner; public class Main { public static void main(String[] args) { new Main().run(); } void run() { Scanner sc = new Scanner(System.in); int n = sc.nextInt(); int m = sc.nextInt(); String str1 = sc.next(); String str2 = sc.next(); int[] cnt1 = new int[2]; int[] cnt2 = new int[2]; for (char c : str1.toCharArray()) { if (c == 'A') ++cnt1[0]; else ++cnt1[1]; } for (char c : str2.toCharArray()) { if (c == 'A') { ++cnt2[0]; } else { ++cnt2[1]; } } int a = Math.min(cnt1[0], cnt2[0]); int b = Math.min(cnt1[1], cnt2[1]); tr(cnt1, cnt2); System.out.println(a + b); } void tr(Object... objects) { System.out.println(Arrays.deepToString(objects)); } }