結果

問題 No.436 ccw
ユーザー OGNMOGNM
提出日時 2016-11-12 23:25:33
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 416 bytes
コンパイル時間 2,894 ms
コンパイル使用メモリ 74,236 KB
実行使用メモリ 42,768 KB
最終ジャッジ日時 2024-05-04 11:10:44
合計ジャッジ時間 7,252 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 103 ms
40,240 KB
testcase_01 AC 103 ms
40,016 KB
testcase_02 AC 109 ms
41,272 KB
testcase_03 AC 115 ms
41,244 KB
testcase_04 AC 113 ms
41,568 KB
testcase_05 AC 101 ms
39,960 KB
testcase_06 AC 113 ms
41,000 KB
testcase_07 AC 109 ms
40,088 KB
testcase_08 AC 118 ms
41,292 KB
testcase_09 AC 110 ms
40,808 KB
testcase_10 WA -
testcase_11 AC 99 ms
39,564 KB
testcase_12 AC 101 ms
40,248 KB
testcase_13 AC 100 ms
40,120 KB
testcase_14 AC 108 ms
40,868 KB
testcase_15 AC 101 ms
40,344 KB
testcase_16 AC 122 ms
41,316 KB
testcase_17 AC 130 ms
40,940 KB
testcase_18 AC 123 ms
41,156 KB
testcase_19 AC 123 ms
41,284 KB
testcase_20 AC 130 ms
41,076 KB
testcase_21 AC 181 ms
42,680 KB
testcase_22 AC 184 ms
42,656 KB
testcase_23 AC 187 ms
42,144 KB
testcase_24 AC 190 ms
42,768 KB
testcase_25 AC 197 ms
42,552 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
public class Study_01 {
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
        String s = sc.nextLine();
        int index = s.indexOf("ccw");
        int sL = s.length();
        int last = sL - index - 3;
        if(index > last){
        	System.out.println(last + 1);
        }else if(last > index){
        	System.out.println(index + 1);
        }
    }
}
0