結果

問題 No.436 ccw
ユーザー OGNMOGNM
提出日時 2016-11-12 23:35:05
言語 Java21
(openjdk 21)
結果
AC  
実行時間 192 ms / 2,000 ms
コード長 478 bytes
コンパイル時間 3,250 ms
コンパイル使用メモリ 75,604 KB
実行使用メモリ 43,064 KB
最終ジャッジ日時 2024-11-25 21:41:58
合計ジャッジ時間 7,497 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 115 ms
41,020 KB
testcase_01 AC 114 ms
41,428 KB
testcase_02 AC 112 ms
40,624 KB
testcase_03 AC 112 ms
41,396 KB
testcase_04 AC 108 ms
41,116 KB
testcase_05 AC 115 ms
40,980 KB
testcase_06 AC 105 ms
41,400 KB
testcase_07 AC 115 ms
41,276 KB
testcase_08 AC 117 ms
41,128 KB
testcase_09 AC 120 ms
41,404 KB
testcase_10 AC 117 ms
40,868 KB
testcase_11 AC 100 ms
39,952 KB
testcase_12 AC 121 ms
41,164 KB
testcase_13 AC 115 ms
41,172 KB
testcase_14 AC 116 ms
41,380 KB
testcase_15 AC 102 ms
41,228 KB
testcase_16 AC 130 ms
41,432 KB
testcase_17 AC 120 ms
40,260 KB
testcase_18 AC 130 ms
41,560 KB
testcase_19 AC 129 ms
41,128 KB
testcase_20 AC 133 ms
41,296 KB
testcase_21 AC 191 ms
42,764 KB
testcase_22 AC 192 ms
43,048 KB
testcase_23 AC 183 ms
42,960 KB
testcase_24 AC 178 ms
43,064 KB
testcase_25 AC 190 ms
42,780 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