結果

問題 No.436 ccw
ユーザー YamaKasaYamaKasa
提出日時 2018-05-24 21:43:57
言語 Java21
(openjdk 21)
結果
AC  
実行時間 195 ms / 2,000 ms
コード長 458 bytes
コンパイル時間 2,616 ms
コンパイル使用メモリ 74,892 KB
実行使用メモリ 42,288 KB
最終ジャッジ日時 2024-06-28 17:31:55
合計ジャッジ時間 6,908 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 124 ms
41,380 KB
testcase_01 AC 109 ms
40,252 KB
testcase_02 AC 109 ms
39,904 KB
testcase_03 AC 107 ms
40,064 KB
testcase_04 AC 121 ms
41,392 KB
testcase_05 AC 119 ms
41,284 KB
testcase_06 AC 110 ms
39,996 KB
testcase_07 AC 123 ms
41,164 KB
testcase_08 AC 122 ms
41,240 KB
testcase_09 AC 122 ms
41,076 KB
testcase_10 AC 122 ms
41,388 KB
testcase_11 AC 108 ms
40,048 KB
testcase_12 AC 111 ms
40,344 KB
testcase_13 AC 130 ms
41,564 KB
testcase_14 AC 124 ms
41,100 KB
testcase_15 AC 120 ms
40,972 KB
testcase_16 AC 136 ms
41,068 KB
testcase_17 AC 132 ms
41,336 KB
testcase_18 AC 140 ms
41,160 KB
testcase_19 AC 126 ms
40,968 KB
testcase_20 AC 122 ms
40,140 KB
testcase_21 AC 195 ms
42,144 KB
testcase_22 AC 184 ms
42,236 KB
testcase_23 AC 191 ms
42,216 KB
testcase_24 AC 187 ms
42,288 KB
testcase_25 AC 191 ms
42,072 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {
	public static void main(String[] args) {
		Scanner scan = new Scanner(System.in);
		String S = scan.next();
		scan.close();
		int cnt1 = 0;
		int cnt2 = 0;

		for(int i = 0; i < S.length(); i++) {
			char c = S.charAt(i);
			if(c == 'w') {
				cnt1 = i;
				cnt2 = S.length() - cnt1;
				break;
			}
		}
		if(cnt1 - 1 >= cnt2) {
			System.out.println(cnt2);
		}else {
			System.out.println(cnt1 - 1);
		}
	}
}
0