結果

問題 No.436 ccw
ユーザー yuma_shobon1108yuma_shobon1108
提出日時 2016-12-02 19:22:02
言語 Java21
(openjdk 21)
結果
AC  
実行時間 197 ms / 2,000 ms
コード長 374 bytes
コンパイル時間 2,268 ms
コンパイル使用メモリ 74,140 KB
実行使用メモリ 42,232 KB
最終ジャッジ日時 2024-11-27 17:29:49
合計ジャッジ時間 6,287 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 114 ms
41,440 KB
testcase_01 AC 115 ms
41,300 KB
testcase_02 AC 112 ms
40,896 KB
testcase_03 AC 114 ms
41,244 KB
testcase_04 AC 103 ms
40,380 KB
testcase_05 AC 115 ms
40,940 KB
testcase_06 AC 118 ms
41,080 KB
testcase_07 AC 119 ms
41,000 KB
testcase_08 AC 116 ms
40,952 KB
testcase_09 AC 116 ms
41,068 KB
testcase_10 AC 109 ms
40,288 KB
testcase_11 AC 105 ms
39,792 KB
testcase_12 AC 116 ms
40,988 KB
testcase_13 AC 115 ms
40,948 KB
testcase_14 AC 117 ms
41,164 KB
testcase_15 AC 117 ms
41,436 KB
testcase_16 AC 125 ms
41,284 KB
testcase_17 AC 119 ms
41,080 KB
testcase_18 AC 137 ms
40,992 KB
testcase_19 AC 129 ms
41,204 KB
testcase_20 AC 118 ms
40,204 KB
testcase_21 AC 181 ms
42,124 KB
testcase_22 AC 191 ms
42,024 KB
testcase_23 AC 196 ms
41,912 KB
testcase_24 AC 190 ms
42,064 KB
testcase_25 AC 197 ms
42,232 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

class Question436
{
	public static void main(String[] str)
	{
	
		Scanner scan = new Scanner(System.in);
		
		String s = scan.next();
		int cnt = 0;
	
		for(int i=0;i<s.length();i++){
			if(s.charAt(i)=='w') break;
			else
				cnt++;
		}
		
		if(cnt>s.length()-cnt)
			System.out.println(s.length()-cnt);
		else
			System.out.println(cnt-1);

	}
}
0