結果

問題 No.436 ccw
ユーザー OGNMOGNM
提出日時 2016-11-12 23:35:05
言語 Java21
(openjdk 21)
結果
AC  
実行時間 217 ms / 2,000 ms
コード長 478 bytes
コンパイル時間 3,642 ms
コンパイル使用メモリ 77,952 KB
実行使用メモリ 42,736 KB
最終ジャッジ日時 2024-05-04 11:11:10
合計ジャッジ時間 8,544 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 128 ms
41,136 KB
testcase_01 AC 132 ms
41,188 KB
testcase_02 AC 127 ms
41,772 KB
testcase_03 AC 127 ms
41,488 KB
testcase_04 AC 127 ms
41,296 KB
testcase_05 AC 126 ms
41,168 KB
testcase_06 AC 127 ms
41,344 KB
testcase_07 AC 126 ms
41,452 KB
testcase_08 AC 135 ms
41,320 KB
testcase_09 AC 127 ms
41,552 KB
testcase_10 AC 132 ms
41,184 KB
testcase_11 AC 127 ms
41,212 KB
testcase_12 AC 127 ms
41,176 KB
testcase_13 AC 126 ms
41,164 KB
testcase_14 AC 130 ms
41,428 KB
testcase_15 AC 126 ms
41,104 KB
testcase_16 AC 143 ms
41,552 KB
testcase_17 AC 144 ms
41,500 KB
testcase_18 AC 139 ms
41,328 KB
testcase_19 AC 151 ms
41,584 KB
testcase_20 AC 164 ms
41,576 KB
testcase_21 AC 217 ms
42,140 KB
testcase_22 AC 216 ms
42,736 KB
testcase_23 AC 209 ms
42,696 KB
testcase_24 AC 210 ms
42,276 KB
testcase_25 AC 215 ms
42,412 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);
        }else if(index == 0){
        	System.out.println(1);
        }
    }
}
0