結果

問題 No.436 ccw
ユーザー kenji_shioyakenji_shioya
提出日時 2016-10-29 11:50:24
言語 Java21
(openjdk 21)
結果
AC  
実行時間 165 ms / 2,000 ms
コード長 324 bytes
コンパイル時間 3,238 ms
コンパイル使用メモリ 74,320 KB
実行使用メモリ 54,520 KB
最終ジャッジ日時 2024-05-03 15:42:11
合計ジャッジ時間 7,517 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 110 ms
53,872 KB
testcase_01 AC 108 ms
54,168 KB
testcase_02 AC 116 ms
54,024 KB
testcase_03 AC 119 ms
53,868 KB
testcase_04 AC 108 ms
54,092 KB
testcase_05 AC 110 ms
53,892 KB
testcase_06 AC 110 ms
53,816 KB
testcase_07 AC 108 ms
54,148 KB
testcase_08 AC 97 ms
52,532 KB
testcase_09 AC 107 ms
53,764 KB
testcase_10 AC 99 ms
52,536 KB
testcase_11 AC 114 ms
54,132 KB
testcase_12 AC 108 ms
54,188 KB
testcase_13 AC 99 ms
54,256 KB
testcase_14 AC 109 ms
54,108 KB
testcase_15 AC 98 ms
53,060 KB
testcase_16 AC 110 ms
52,876 KB
testcase_17 AC 133 ms
53,932 KB
testcase_18 AC 130 ms
54,012 KB
testcase_19 AC 119 ms
53,104 KB
testcase_20 AC 131 ms
54,256 KB
testcase_21 AC 165 ms
54,068 KB
testcase_22 AC 161 ms
54,520 KB
testcase_23 AC 162 ms
54,060 KB
testcase_24 AC 163 ms
54,296 KB
testcase_25 AC 163 ms
54,328 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Exercise161 {
  public static void main(String[] args){
    Scanner sc = new Scanner(System.in);
    String str = sc.next();

    int cCount = str.lastIndexOf('c');
    int total = str.length();
    int wCount = total - (cCount + 1);

    System.out.println(Math.min(cCount, wCount));
  }
}
0