結果
問題 | No.345 最小チワワ問題 |
ユーザー | t8m8⛄️ |
提出日時 | 2016-02-26 22:29:42 |
言語 | Java21 (openjdk 21) |
結果 |
WA
|
実行時間 | - |
コード長 | 987 bytes |
コンパイル時間 | 3,809 ms |
コンパイル使用メモリ | 81,540 KB |
実行使用メモリ | 56,256 KB |
最終ジャッジ日時 | 2024-09-22 14:08:30 |
合計ジャッジ時間 | 9,385 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 144 ms
54,384 KB |
testcase_01 | AC | 144 ms
53,848 KB |
testcase_02 | AC | 128 ms
53,252 KB |
testcase_03 | AC | 151 ms
54,168 KB |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | AC | 149 ms
54,284 KB |
testcase_08 | AC | 142 ms
53,932 KB |
testcase_09 | AC | 143 ms
54,240 KB |
testcase_10 | AC | 141 ms
54,272 KB |
testcase_11 | AC | 142 ms
53,972 KB |
testcase_12 | AC | 145 ms
54,232 KB |
testcase_13 | AC | 142 ms
53,876 KB |
testcase_14 | WA | - |
testcase_15 | AC | 142 ms
54,288 KB |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | AC | 129 ms
53,168 KB |
testcase_20 | AC | 141 ms
54,228 KB |
testcase_21 | AC | 139 ms
54,040 KB |
testcase_22 | AC | 141 ms
54,172 KB |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | WA | - |
testcase_27 | WA | - |
testcase_28 | AC | 142 ms
54,472 KB |
testcase_29 | WA | - |
testcase_30 | WA | - |
testcase_31 | AC | 142 ms
54,280 KB |
ソースコード
import java.util.*; import java.io.*; import java.awt.geom.*; import java.math.*; public class No0345 { static final Scanner in = new Scanner(System.in); static final PrintWriter out = new PrintWriter(System.out,false); static boolean debug = false; static void solve() { String s = in.next(); int n = s.length(); int w = 0; int x = -1, y = -1; int max = -1; for (int i=n-1; i>=0; i--) { if (s.charAt(i) == 'w') { if (w == 0) { y = i; } else if (w == 1) { x = i; } else { y = x; x = i; } w++; } if (w > 1 && s.charAt(i) == 'c') { max = y - i + 1; } } out.println(max); } public static void main(String[] args) { debug = args.length > 0; long start = System.currentTimeMillis(); solve(); out.flush(); long end = System.currentTimeMillis(); dump((end-start) + "ms"); in.close(); out.close(); } static void dump(Object... o) { if (debug) System.err.println(Arrays.deepToString(o)); } }