結果
問題 |
No.672 最長AB列
|
ユーザー |
|
提出日時 | 2018-04-15 01:08:10 |
言語 | Java (openjdk 23) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,231 bytes |
コンパイル時間 | 3,310 ms |
コンパイル使用メモリ | 78,216 KB |
実行使用メモリ | 53,192 KB |
最終ジャッジ日時 | 2024-06-27 20:10:25 |
合計ジャッジ時間 | 5,733 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 2 WA * 1 |
other | AC * 2 WA * 14 |
ソースコード
package yukicoder; import java.io.BufferedReader; import java.io.IOException; import java.io.InputStream; import java.io.InputStreamReader; import java.util.*; public class P672 { public static void main(String[] args) throws IOException { MyScanner sc = new MyScanner(System.in); String s = sc.next(); int a = 0; int b = 0; for(int i=0; i<s.length(); i++) { if(s.charAt(i)=='A') a++; if(s.charAt(i)=='B') b++; } System.out.println(Math.min(a, b)); } static class MyScanner { BufferedReader br; StringTokenizer st; public MyScanner(InputStream s) { br=new BufferedReader(new InputStreamReader(s)); } public String nextLine() throws IOException { return br.readLine(); } public String next() throws IOException { while(st==null || !st.hasMoreTokens()) st=new StringTokenizer(br.readLine()); return st.nextToken(); } public int nextInt() throws IOException { return Integer.parseInt(next()); } public double nextDouble() throws IOException { return Double.parseDouble(next()); } public boolean ready() throws IOException { return br.ready(); } public long nextLong() throws IOException { return Long.parseLong(next()); } } }