結果

問題 No.436 ccw
ユーザー ぴろずぴろず
提出日時 2016-10-28 22:26:40
言語 Java21
(openjdk 21)
結果
AC  
実行時間 214 ms / 2,000 ms
コード長 600 bytes
コンパイル時間 2,487 ms
コンパイル使用メモリ 74,564 KB
実行使用メモリ 45,952 KB
最終ジャッジ日時 2024-11-24 05:44:43
合計ジャッジ時間 6,837 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 123 ms
41,328 KB
testcase_01 AC 124 ms
41,172 KB
testcase_02 AC 110 ms
40,912 KB
testcase_03 AC 121 ms
40,968 KB
testcase_04 AC 121 ms
40,988 KB
testcase_05 AC 119 ms
40,852 KB
testcase_06 AC 121 ms
41,084 KB
testcase_07 AC 119 ms
41,012 KB
testcase_08 AC 110 ms
41,204 KB
testcase_09 AC 123 ms
41,372 KB
testcase_10 AC 127 ms
41,236 KB
testcase_11 AC 110 ms
39,936 KB
testcase_12 AC 121 ms
41,268 KB
testcase_13 AC 120 ms
41,372 KB
testcase_14 AC 120 ms
41,032 KB
testcase_15 AC 123 ms
40,936 KB
testcase_16 AC 151 ms
41,504 KB
testcase_17 AC 130 ms
41,108 KB
testcase_18 AC 141 ms
41,472 KB
testcase_19 AC 144 ms
41,180 KB
testcase_20 AC 138 ms
41,408 KB
testcase_21 AC 213 ms
45,568 KB
testcase_22 AC 198 ms
45,932 KB
testcase_23 AC 208 ms
45,952 KB
testcase_24 AC 214 ms
45,748 KB
testcase_25 AC 200 ms
45,528 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