結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 101 ms
40,064 KB
testcase_01 AC 104 ms
40,156 KB
testcase_02 AC 98 ms
39,868 KB
testcase_03 AC 102 ms
39,896 KB
testcase_04 AC 114 ms
41,116 KB
testcase_05 AC 114 ms
41,012 KB
testcase_06 AC 112 ms
41,156 KB
testcase_07 AC 101 ms
40,052 KB
testcase_08 AC 112 ms
40,872 KB
testcase_09 AC 112 ms
40,868 KB
testcase_10 WA -
testcase_11 AC 104 ms
40,376 KB
testcase_12 AC 112 ms
41,140 KB
testcase_13 AC 113 ms
41,268 KB
testcase_14 AC 114 ms
41,056 KB
testcase_15 AC 102 ms
40,112 KB
testcase_16 AC 128 ms
40,920 KB
testcase_17 AC 116 ms
40,256 KB
testcase_18 AC 126 ms
40,648 KB
testcase_19 AC 127 ms
40,604 KB
testcase_20 AC 125 ms
40,988 KB
testcase_21 AC 191 ms
42,780 KB
testcase_22 AC 181 ms
42,268 KB
testcase_23 AC 182 ms
42,304 KB
testcase_24 AC 193 ms
42,140 KB
testcase_25 AC 194 ms
42,544 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