結果
問題 | No.436 ccw |
ユーザー | ぴろず |
提出日時 | 2016-10-28 22:25:50 |
言語 | Java21 (openjdk 21) |
結果 |
WA
|
実行時間 | - |
コード長 | 600 bytes |
コンパイル時間 | 2,101 ms |
コンパイル使用メモリ | 74,504 KB |
実行使用メモリ | 45,928 KB |
最終ジャッジ日時 | 2024-11-24 05:43:11 |
合計ジャッジ時間 | 6,462 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | AC | 110 ms
40,952 KB |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | AC | 100 ms
41,088 KB |
testcase_07 | AC | 101 ms
41,196 KB |
testcase_08 | AC | 96 ms
41,236 KB |
testcase_09 | AC | 95 ms
41,176 KB |
testcase_10 | AC | 112 ms
41,176 KB |
testcase_11 | AC | 113 ms
40,984 KB |
testcase_12 | WA | - |
testcase_13 | AC | 116 ms
41,220 KB |
testcase_14 | AC | 113 ms
41,176 KB |
testcase_15 | AC | 115 ms
41,092 KB |
testcase_16 | AC | 130 ms
41,316 KB |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | AC | 130 ms
41,064 KB |
testcase_21 | AC | 186 ms
45,928 KB |
testcase_22 | AC | 195 ms
45,540 KB |
testcase_23 | AC | 189 ms
45,592 KB |
testcase_24 | WA | - |
testcase_25 | AC | 193 ms
45,692 KB |
ソースコード
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 + 2, s.length() - min - 2)); } } }