結果

問題 No.436 ccw
ユーザー tsunabittsunabit
提出日時 2019-06-08 02:42:28
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 471 bytes
コンパイル時間 3,793 ms
コンパイル使用メモリ 74,420 KB
実行使用メモリ 42,164 KB
最終ジャッジ日時 2024-10-05 22:13:57
合計ジャッジ時間 7,039 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 110 ms
41,268 KB
testcase_01 AC 107 ms
41,340 KB
testcase_02 AC 100 ms
41,312 KB
testcase_03 AC 113 ms
41,092 KB
testcase_04 AC 111 ms
41,392 KB
testcase_05 AC 106 ms
41,188 KB
testcase_06 WA -
testcase_07 AC 112 ms
40,928 KB
testcase_08 AC 96 ms
41,484 KB
testcase_09 AC 100 ms
40,864 KB
testcase_10 AC 102 ms
41,040 KB
testcase_11 AC 111 ms
41,160 KB
testcase_12 AC 116 ms
41,040 KB
testcase_13 AC 108 ms
40,928 KB
testcase_14 AC 111 ms
41,396 KB
testcase_15 AC 110 ms
41,164 KB
testcase_16 AC 120 ms
41,368 KB
testcase_17 AC 120 ms
41,200 KB
testcase_18 AC 130 ms
41,384 KB
testcase_19 AC 126 ms
41,268 KB
testcase_20 AC 139 ms
40,964 KB
testcase_21 AC 159 ms
42,164 KB
testcase_22 AC 169 ms
41,988 KB
testcase_23 AC 170 ms
42,040 KB
testcase_24 AC 163 ms
42,040 KB
testcase_25 AC 172 ms
41,840 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import java.math.*;

public class No436 {
    public static void main(String[] args) {
        // 標準入力から読み込む際に、Scannerオブジェクトを使う。
        Scanner s = new Scanner(System.in);
        String str = s.next();
        int b = str.indexOf("ccw");
        
        if(b < str.length() / 2) {
        	System.out.println(b + 1);
        }else {
        	System.out.println(str.length() - b - 2);
        }
    }
}
0