結果

問題 No.436 ccw
ユーザー ぴろずぴろず
提出日時 2016-10-28 22:26:40
言語 Java21
(openjdk 21)
結果
AC  
実行時間 223 ms / 2,000 ms
コード長 600 bytes
コンパイル時間 2,224 ms
コンパイル使用メモリ 74,608 KB
実行使用メモリ 45,768 KB
最終ジャッジ日時 2024-05-03 07:36:57
合計ジャッジ時間 7,172 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 128 ms
41,572 KB
testcase_01 AC 129 ms
41,568 KB
testcase_02 AC 117 ms
39,964 KB
testcase_03 AC 131 ms
41,184 KB
testcase_04 AC 130 ms
41,584 KB
testcase_05 AC 129 ms
41,304 KB
testcase_06 AC 131 ms
41,296 KB
testcase_07 AC 130 ms
41,300 KB
testcase_08 AC 128 ms
41,548 KB
testcase_09 AC 126 ms
41,048 KB
testcase_10 AC 129 ms
41,096 KB
testcase_11 AC 128 ms
41,380 KB
testcase_12 AC 128 ms
41,516 KB
testcase_13 AC 130 ms
41,184 KB
testcase_14 AC 130 ms
41,304 KB
testcase_15 AC 130 ms
41,416 KB
testcase_16 AC 153 ms
41,380 KB
testcase_17 AC 136 ms
41,948 KB
testcase_18 AC 144 ms
41,712 KB
testcase_19 AC 144 ms
41,588 KB
testcase_20 AC 154 ms
41,548 KB
testcase_21 AC 220 ms
45,472 KB
testcase_22 AC 217 ms
45,648 KB
testcase_23 AC 223 ms
45,520 KB
testcase_24 AC 217 ms
45,768 KB
testcase_25 AC 220 ms
45,472 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package no436;

import java.util.Scanner;

public class Main {

	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		String s = sc.next();
		int min = Integer.MAX_VALUE;
		int max = Integer.MIN_VALUE;
		for(int i=0;i<s.length()-2;i++) {
			if (s.substring(i, i+3).equals("ccw")) {
				min = Math.min(min, i);
				max = Math.max(max, i);
			}
		}
		if (min == Integer.MAX_VALUE) {
			System.out.println(0);
		}else{
//			System.out.println(max + 1);
//			System.out.println(s.length() - min - 2);
			System.out.println(Math.min(max + 1, s.length() - min - 2));
		}
	}

}
0