結果

問題 No.436 ccw
ユーザー yuma_shobon1108yuma_shobon1108
提出日時 2016-12-02 19:20:12
言語 Java21
(openjdk 21)
結果
AC  
実行時間 182 ms / 2,000 ms
コード長 374 bytes
コンパイル時間 2,464 ms
コンパイル使用メモリ 74,608 KB
実行使用メモリ 42,032 KB
最終ジャッジ日時 2024-05-05 17:46:40
合計ジャッジ時間 6,600 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 110 ms
40,756 KB
testcase_01 AC 96 ms
40,092 KB
testcase_02 AC 95 ms
40,048 KB
testcase_03 AC 108 ms
41,108 KB
testcase_04 AC 93 ms
40,104 KB
testcase_05 AC 104 ms
41,216 KB
testcase_06 AC 104 ms
40,836 KB
testcase_07 AC 105 ms
40,928 KB
testcase_08 AC 95 ms
40,016 KB
testcase_09 AC 103 ms
41,084 KB
testcase_10 AC 105 ms
41,320 KB
testcase_11 AC 111 ms
41,240 KB
testcase_12 AC 108 ms
40,268 KB
testcase_13 AC 107 ms
40,976 KB
testcase_14 AC 106 ms
41,084 KB
testcase_15 AC 109 ms
40,992 KB
testcase_16 AC 141 ms
41,308 KB
testcase_17 AC 156 ms
41,088 KB
testcase_18 AC 162 ms
41,764 KB
testcase_19 AC 162 ms
41,332 KB
testcase_20 AC 163 ms
41,356 KB
testcase_21 AC 182 ms
42,016 KB
testcase_22 AC 165 ms
41,900 KB
testcase_23 AC 169 ms
41,872 KB
testcase_24 AC 170 ms
41,940 KB
testcase_25 AC 170 ms
42,032 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

class Question445
{
	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