結果
問題 | No.717 ファッションへのこだわり |
ユーザー | amotoma3 |
提出日時 | 2018-07-30 22:31:19 |
言語 | Java21 (openjdk 21) |
結果 |
AC
|
実行時間 | 77 ms / 2,000 ms |
コード長 | 2,087 bytes |
コンパイル時間 | 2,947 ms |
コンパイル使用メモリ | 91,588 KB |
実行使用メモリ | 38,400 KB |
最終ジャッジ日時 | 2024-09-14 17:54:05 |
合計ジャッジ時間 | 4,115 ms |
ジャッジサーバーID (参考情報) |
judge6 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 63 ms
38,004 KB |
testcase_01 | AC | 62 ms
37,632 KB |
testcase_02 | AC | 64 ms
37,900 KB |
testcase_03 | AC | 65 ms
37,660 KB |
testcase_04 | AC | 64 ms
37,204 KB |
testcase_05 | AC | 65 ms
37,960 KB |
testcase_06 | AC | 66 ms
37,728 KB |
testcase_07 | AC | 71 ms
37,936 KB |
testcase_08 | AC | 77 ms
38,400 KB |
testcase_09 | AC | 76 ms
38,216 KB |
testcase_10 | AC | 70 ms
37,996 KB |
testcase_11 | AC | 73 ms
38,248 KB |
testcase_12 | AC | 71 ms
38,384 KB |
ソースコード
import java.io.OutputStream; import java.io.IOException; import java.io.InputStream; import java.io.PrintWriter; import java.util.stream.IntStream; import java.util.StringTokenizer; import java.io.IOException; import java.util.InputMismatchException; import java.io.BufferedReader; import java.io.InputStreamReader; import java.io.InputStream; /** * Built using CHelper plug-in * Actual solution is at the top */ public class Main { public static void main(String[] args) { InputStream inputStream = System.in; OutputStream outputStream = System.out; InputReader in = new InputReader(inputStream); PrintWriter out = new PrintWriter(outputStream); Task717 solver = new Task717(); solver.solve(1, in, out); out.close(); } static class Task717 { public void solve(int testNumber, InputReader in, PrintWriter out) { int n = in.nextInt(); int m = in.nextInt(); String s = in.nextString(); String t = in.nextString(); long cntAInS = s.chars().filter(c -> c == 'A').count(); long cntBInS = n - cntAInS; long cntAInT = t.chars().filter(c -> c == 'A').count(); long cntBInT = m - cntAInT; out.println(Math.min(cntAInS, cntAInT) + Math.min(cntBInS, cntBInT)); } } static class InputReader { private BufferedReader br; private StringTokenizer st; public InputReader(InputStream inputStream) { br = new BufferedReader(new InputStreamReader(inputStream)); st = new StringTokenizer(""); } public String nextString() { while (!st.hasMoreTokens()) { try { st = new StringTokenizer(br.readLine(), " "); } catch (IOException e) { throw new InputMismatchException(); } } return st.nextToken(); } public int nextInt() { return Integer.parseInt(nextString()); } } }