結果

問題 No.436 ccw
ユーザー jimanojimano
提出日時 2018-02-10 17:08:30
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 589 bytes
コンパイル時間 2,870 ms
コンパイル使用メモリ 72,772 KB
実行使用メモリ 37,800 KB
最終ジャッジ日時 2024-10-14 17:03:38
合計ジャッジ時間 5,246 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 47 ms
36,656 KB
testcase_01 AC 49 ms
36,556 KB
testcase_02 AC 48 ms
36,456 KB
testcase_03 AC 46 ms
36,756 KB
testcase_04 AC 47 ms
36,640 KB
testcase_05 AC 46 ms
36,720 KB
testcase_06 WA -
testcase_07 AC 48 ms
36,196 KB
testcase_08 AC 48 ms
36,608 KB
testcase_09 AC 49 ms
36,548 KB
testcase_10 AC 49 ms
36,720 KB
testcase_11 AC 45 ms
36,432 KB
testcase_12 AC 48 ms
36,648 KB
testcase_13 AC 48 ms
36,392 KB
testcase_14 AC 46 ms
36,480 KB
testcase_15 AC 48 ms
36,480 KB
testcase_16 AC 47 ms
36,696 KB
testcase_17 AC 47 ms
36,532 KB
testcase_18 AC 47 ms
36,552 KB
testcase_19 AC 47 ms
36,076 KB
testcase_20 AC 48 ms
36,644 KB
testcase_21 AC 76 ms
37,728 KB
testcase_22 AC 74 ms
37,708 KB
testcase_23 AC 64 ms
37,800 KB
testcase_24 AC 64 ms
37,800 KB
testcase_25 AC 66 ms
37,564 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package me.yukicoder;

import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;

public class No0436 {
	public static void main(String[] args) throws IOException {
		BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
		String input = br.readLine();
		int length = input.length();
		int ans = 0;
		int left = input.indexOf("ccw");
		int mid = (length % 2 == 0)? length / 2 - 1: length / 2;
		
		if (left <= mid) {
			ans = left + 1;// to left
		}
		else {
			ans = length - left - 2;// to right
		}
		System.out.println(ans);
	}
}
0