結果
問題 | No.345 最小チワワ問題 |
ユーザー | mizunomi32 |
提出日時 | 2016-02-28 22:00:23 |
言語 | Java21 (openjdk 21) |
結果 |
WA
|
実行時間 | - |
コード長 | 748 bytes |
コンパイル時間 | 3,166 ms |
コンパイル使用メモリ | 74,192 KB |
実行使用メモリ | 54,328 KB |
最終ジャッジ日時 | 2024-09-24 12:12:05 |
合計ジャッジ時間 | 8,159 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 118 ms
53,736 KB |
testcase_01 | AC | 119 ms
53,752 KB |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | AC | 117 ms
53,864 KB |
testcase_06 | AC | 117 ms
53,984 KB |
testcase_07 | AC | 120 ms
53,796 KB |
testcase_08 | AC | 121 ms
53,896 KB |
testcase_09 | AC | 111 ms
53,728 KB |
testcase_10 | AC | 120 ms
53,772 KB |
testcase_11 | AC | 108 ms
52,860 KB |
testcase_12 | AC | 108 ms
52,776 KB |
testcase_13 | AC | 119 ms
53,824 KB |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | AC | 116 ms
53,828 KB |
testcase_21 | AC | 120 ms
53,848 KB |
testcase_22 | AC | 108 ms
52,896 KB |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | WA | - |
testcase_27 | WA | - |
testcase_28 | AC | 119 ms
53,912 KB |
testcase_29 | WA | - |
testcase_30 | WA | - |
testcase_31 | AC | 118 ms
54,048 KB |
ソースコード
import java.util.*; public class main { public static void main(String[] args){ Scanner sc = new Scanner(System.in); String s = sc.next(); char[] chars = s.toCharArray(); int charlonger = s.length(); int i=0; int flag =0; int a=0,b=0; for(;i<charlonger;i++){ if(chars[i] == 'c'){ flag = 1; a=i; }else if(flag == 1 && chars[i] == 'w'){ flag = 2; }else if(flag == 2 && chars[i] == 'w' ){ flag =3; b=i; } } if(flag == 3){ System.out.println(b-a+1); }else{ System.out.println("-1"); } } }