結果
問題 | No.345 最小チワワ問題 |
ユーザー | h_tyokinuhata |
提出日時 | 2016-02-27 02:44:19 |
言語 | Java21 (openjdk 21) |
結果 |
WA
|
実行時間 | - |
コード長 | 691 bytes |
コンパイル時間 | 2,209 ms |
コンパイル使用メモリ | 75,044 KB |
実行使用メモリ | 54,440 KB |
最終ジャッジ日時 | 2024-09-24 11:00:56 |
合計ジャッジ時間 | 7,063 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 122 ms
54,276 KB |
testcase_01 | AC | 122 ms
54,324 KB |
testcase_02 | AC | 123 ms
54,152 KB |
testcase_03 | AC | 124 ms
53,964 KB |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | AC | 122 ms
54,108 KB |
testcase_11 | WA | - |
testcase_12 | AC | 123 ms
53,912 KB |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | AC | 122 ms
54,268 KB |
testcase_20 | AC | 122 ms
54,128 KB |
testcase_21 | AC | 109 ms
52,824 KB |
testcase_22 | AC | 123 ms
54,132 KB |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | WA | - |
testcase_27 | WA | - |
testcase_28 | AC | 123 ms
54,028 KB |
testcase_29 | WA | - |
testcase_30 | WA | - |
testcase_31 | WA | - |
ソースコード
import java.util.*; public class Main { public static void main(String[] args) { Scanner sc = new Scanner(System.in); String S = sc.next(); String comp = S; int flag = 0; for(int i = 0; i < S.length(); i++) { if(S.substring(i, i + 1).equals("c")) { S = S.substring(i); comp = S; //System.out.println(S); S = S.substring(S.indexOf("w") + 1); //System.out.println(S); if(S.indexOf("w") == -1) { flag = 1; break; } else { S = S.substring(S.indexOf("w") + 1); //System.out.println(S); } } } if(flag == 0) { System.out.println(comp.length() - S.length()); } else { System.out.println(-1); } } }