結果

問題 No.436 ccw
ユーザー yuma_shobon1108yuma_shobon1108
提出日時 2016-12-02 19:22:02
言語 Java21
(openjdk 21)
結果
AC  
実行時間 172 ms / 2,000 ms
コード長 374 bytes
コンパイル時間 1,996 ms
コンパイル使用メモリ 73,960 KB
実行使用メモリ 42,444 KB
最終ジャッジ日時 2024-05-05 17:47:31
合計ジャッジ時間 5,963 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 108 ms
41,100 KB
testcase_01 AC 108 ms
40,636 KB
testcase_02 AC 95 ms
39,660 KB
testcase_03 AC 106 ms
41,088 KB
testcase_04 AC 105 ms
41,180 KB
testcase_05 AC 108 ms
40,916 KB
testcase_06 AC 101 ms
40,104 KB
testcase_07 AC 104 ms
40,612 KB
testcase_08 AC 96 ms
40,000 KB
testcase_09 AC 109 ms
41,072 KB
testcase_10 AC 118 ms
40,832 KB
testcase_11 AC 105 ms
41,124 KB
testcase_12 AC 108 ms
40,776 KB
testcase_13 AC 95 ms
40,008 KB
testcase_14 AC 95 ms
40,152 KB
testcase_15 AC 106 ms
41,044 KB
testcase_16 AC 123 ms
41,228 KB
testcase_17 AC 120 ms
41,052 KB
testcase_18 AC 125 ms
40,936 KB
testcase_19 AC 111 ms
40,408 KB
testcase_20 AC 124 ms
41,356 KB
testcase_21 AC 167 ms
42,416 KB
testcase_22 AC 169 ms
42,444 KB
testcase_23 AC 167 ms
42,064 KB
testcase_24 AC 167 ms
41,856 KB
testcase_25 AC 172 ms
42,208 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