結果

問題 No.436 ccw
ユーザー shinwisteriashinwisteria
提出日時 2017-03-30 17:36:30
言語 Java21
(openjdk 21)
結果
AC  
実行時間 169 ms / 2,000 ms
コード長 311 bytes
コンパイル時間 4,220 ms
コンパイル使用メモリ 74,788 KB
実行使用メモリ 42,332 KB
最終ジャッジ日時 2024-07-07 03:02:16
合計ジャッジ時間 7,262 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 96 ms
41,192 KB
testcase_01 AC 111 ms
41,640 KB
testcase_02 AC 96 ms
41,388 KB
testcase_03 AC 108 ms
41,336 KB
testcase_04 AC 105 ms
41,420 KB
testcase_05 AC 112 ms
41,520 KB
testcase_06 AC 103 ms
41,168 KB
testcase_07 AC 104 ms
41,060 KB
testcase_08 AC 116 ms
41,248 KB
testcase_09 AC 96 ms
41,036 KB
testcase_10 AC 100 ms
41,524 KB
testcase_11 AC 109 ms
41,232 KB
testcase_12 AC 109 ms
41,448 KB
testcase_13 AC 111 ms
41,136 KB
testcase_14 AC 106 ms
39,888 KB
testcase_15 AC 97 ms
41,112 KB
testcase_16 AC 134 ms
41,296 KB
testcase_17 AC 122 ms
41,404 KB
testcase_18 AC 110 ms
41,408 KB
testcase_19 AC 133 ms
41,576 KB
testcase_20 AC 114 ms
41,428 KB
testcase_21 AC 165 ms
42,000 KB
testcase_22 AC 169 ms
41,896 KB
testcase_23 AC 159 ms
41,996 KB
testcase_24 AC 166 ms
42,148 KB
testcase_25 AC 162 ms
42,332 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Ccw {

	public static void main(String[] args) {
		Scanner s = new Scanner(System.in);
		String str = s.next();
		s.close();
		int left = 0,right = 0;
		left = str.indexOf("ccw");
		right = str.length()-1-(left +1);
		System.out.println(Integer.min(left+1,right));

	}

}
0