結果

問題 No.436 ccw
ユーザー Natsume-MNatsume-M
提出日時 2016-12-09 18:39:42
言語 Java21
(openjdk 21)
結果
AC  
実行時間 174 ms / 2,000 ms
コード長 236 bytes
コンパイル時間 2,611 ms
コンパイル使用メモリ 74,112 KB
実行使用メモリ 42,444 KB
最終ジャッジ日時 2024-05-06 12:59:24
合計ジャッジ時間 6,712 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 110 ms
41,168 KB
testcase_01 AC 109 ms
41,052 KB
testcase_02 AC 111 ms
41,760 KB
testcase_03 AC 101 ms
40,152 KB
testcase_04 AC 111 ms
40,976 KB
testcase_05 AC 106 ms
40,720 KB
testcase_06 AC 102 ms
40,188 KB
testcase_07 AC 110 ms
41,608 KB
testcase_08 AC 110 ms
41,032 KB
testcase_09 AC 107 ms
41,128 KB
testcase_10 AC 110 ms
41,444 KB
testcase_11 AC 102 ms
40,364 KB
testcase_12 AC 114 ms
41,388 KB
testcase_13 AC 110 ms
41,264 KB
testcase_14 AC 112 ms
41,232 KB
testcase_15 AC 114 ms
41,232 KB
testcase_16 AC 132 ms
41,376 KB
testcase_17 AC 103 ms
39,992 KB
testcase_18 AC 130 ms
41,448 KB
testcase_19 AC 124 ms
41,448 KB
testcase_20 AC 135 ms
41,420 KB
testcase_21 AC 174 ms
42,268 KB
testcase_22 AC 171 ms
42,444 KB
testcase_23 AC 169 ms
42,336 KB
testcase_24 AC 173 ms
42,364 KB
testcase_25 AC 169 ms
42,216 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
class y436 {
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		String s = sc.next();
		int c = s.indexOf('w'), w = s.length()-c;	c--;
		System.out.println(c<w?c:w);
		sc.close();
	}
}
0