結果

問題 No.436 ccw
ユーザー fal_rndfal_rnd
提出日時 2016-10-28 23:00:50
言語 Java21
(openjdk 21)
結果
RE  
実行時間 -
コード長 225 bytes
コンパイル時間 2,431 ms
コンパイル使用メモリ 75,684 KB
実行使用メモリ 42,160 KB
最終ジャッジ日時 2024-11-24 06:13:25
合計ジャッジ時間 6,593 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 122 ms
40,880 KB
testcase_01 AC 126 ms
40,944 KB
testcase_02 AC 111 ms
40,268 KB
testcase_03 AC 115 ms
40,848 KB
testcase_04 AC 123 ms
40,964 KB
testcase_05 AC 123 ms
40,984 KB
testcase_06 AC 111 ms
39,720 KB
testcase_07 AC 110 ms
40,040 KB
testcase_08 AC 123 ms
40,856 KB
testcase_09 RE -
testcase_10 RE -
testcase_11 AC 125 ms
40,992 KB
testcase_12 AC 124 ms
40,972 KB
testcase_13 AC 125 ms
41,256 KB
testcase_14 RE -
testcase_15 AC 127 ms
41,000 KB
testcase_16 AC 139 ms
41,008 KB
testcase_17 AC 130 ms
41,060 KB
testcase_18 AC 139 ms
41,008 KB
testcase_19 AC 138 ms
41,000 KB
testcase_20 AC 149 ms
41,256 KB
testcase_21 AC 205 ms
42,072 KB
testcase_22 AC 200 ms
41,976 KB
testcase_23 AC 198 ms
41,872 KB
testcase_24 AC 179 ms
41,920 KB
testcase_25 AC 191 ms
42,160 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
class A{
	static Scanner s = new Scanner(System.in);
	public static void main(String[] args) {
		String[] in = s.next().split("ccw");
		System.out.println(Math.min(in[0].length(), in[1].length())+1);
	}
}
0