結果

問題 No.436 ccw
ユーザー GrenacheGrenache
提出日時 2016-10-28 22:24:52
言語 Java
(openjdk 23)
結果
AC  
実行時間 173 ms / 2,000 ms
コード長 826 bytes
コンパイル時間 3,118 ms
コンパイル使用メモリ 75,188 KB
実行使用メモリ 42,332 KB
最終ジャッジ日時 2024-11-24 05:41:33
合計ジャッジ時間 7,243 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2
other AC * 24
権限があれば一括ダウンロードができます

ソースコード

diff #

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


public class Main_yukicoder436 {

	private static Scanner sc;
	private static Printer pr;

	private static void solve() {
		char[] s = sc.next().toCharArray();
		int n = s.length;

		if (n <= 2) {
			pr.println(0);
		} else {
			int cc = 0;
			int cw = 0;
			for (int i = 0; i < s.length; i++) {
				if (s[i] == 'c') {
					cc++;
				} else {
					cw++;
				}
			}

			if (cc < 2 || cw < 1) {
				pr.println(0);
			} else {
				pr.println(Math.min(cc - 1, cw));
			}
		}
	}

	// ---------------------------------------------------
	public static void main(String[] args) {
		sc = new Scanner(System.in);
		pr = new Printer(System.out);

		solve();

		pr.close();
		sc.close();
	}

	private static class Printer extends PrintWriter {
		Printer(PrintStream out) {
			super(out);
		}
	}
}
0