結果

問題 No.672 最長AB列
ユーザー tetsutetsu
提出日時 2018-04-15 01:08:10
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 1,231 bytes
コンパイル時間 3,487 ms
コンパイル使用メモリ 73,840 KB
実行使用メモリ 53,720 KB
最終ジャッジ日時 2023-09-10 04:27:58
合計ジャッジ時間 5,994 ms
ジャッジサーバーID
(参考情報)
judge11 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 44 ms
49,348 KB
testcase_02 AC 44 ms
49,492 KB
testcase_03 AC 46 ms
49,300 KB
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 116 ms
52,524 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

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());
		}
	}
}

0