結果

問題 No.436 ccw
ユーザー kohaku_kohakukohaku_kohaku
提出日時 2016-11-13 22:10:47
言語 Java21
(openjdk 21)
結果
AC  
実行時間 173 ms / 2,000 ms
コード長 300 bytes
コンパイル時間 1,748 ms
コンパイル使用メモリ 74,148 KB
実行使用メモリ 42,340 KB
最終ジャッジ日時 2024-11-25 22:01:19
合計ジャッジ時間 5,674 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 105 ms
39,988 KB
testcase_01 AC 111 ms
41,168 KB
testcase_02 AC 108 ms
40,976 KB
testcase_03 AC 110 ms
41,192 KB
testcase_04 AC 91 ms
40,900 KB
testcase_05 AC 101 ms
39,968 KB
testcase_06 AC 113 ms
41,148 KB
testcase_07 AC 98 ms
39,764 KB
testcase_08 AC 105 ms
40,648 KB
testcase_09 AC 108 ms
40,748 KB
testcase_10 AC 98 ms
40,984 KB
testcase_11 AC 100 ms
39,896 KB
testcase_12 AC 94 ms
41,460 KB
testcase_13 AC 113 ms
41,204 KB
testcase_14 AC 97 ms
39,892 KB
testcase_15 AC 99 ms
40,052 KB
testcase_16 AC 112 ms
40,264 KB
testcase_17 AC 100 ms
40,092 KB
testcase_18 AC 121 ms
41,312 KB
testcase_19 AC 116 ms
40,668 KB
testcase_20 AC 112 ms
39,996 KB
testcase_21 AC 173 ms
42,340 KB
testcase_22 AC 167 ms
42,184 KB
testcase_23 AC 162 ms
41,904 KB
testcase_24 AC 170 ms
42,084 KB
testcase_25 AC 172 ms
41,708 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        String S = sc.next();
        int a = S.indexOf("cw");
        int b = S.length()-a-1;
        int min = Math.min(a,b);
        System.out.println(min);
    }
}
0