結果
問題 | No.345 最小チワワ問題 |
ユーザー | mizunomi32 |
提出日時 | 2016-02-28 22:03:11 |
言語 | Java21 (openjdk 21) |
結果 |
WA
|
実行時間 | - |
コード長 | 820 bytes |
コンパイル時間 | 3,316 ms |
コンパイル使用メモリ | 77,568 KB |
実行使用メモリ | 56,264 KB |
最終ジャッジ日時 | 2024-09-24 12:12:20 |
合計ジャッジ時間 | 7,951 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 117 ms
54,096 KB |
testcase_01 | AC | 118 ms
54,184 KB |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | AC | 120 ms
53,720 KB |
testcase_06 | AC | 117 ms
53,968 KB |
testcase_07 | AC | 119 ms
53,952 KB |
testcase_08 | AC | 119 ms
54,008 KB |
testcase_09 | AC | 110 ms
53,724 KB |
testcase_10 | AC | 119 ms
53,956 KB |
testcase_11 | AC | 118 ms
53,808 KB |
testcase_12 | AC | 121 ms
53,856 KB |
testcase_13 | AC | 118 ms
54,216 KB |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | AC | 117 ms
53,716 KB |
testcase_20 | AC | 120 ms
53,856 KB |
testcase_21 | AC | 117 ms
53,960 KB |
testcase_22 | AC | 119 ms
53,900 KB |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | WA | - |
testcase_27 | WA | - |
testcase_28 | AC | 117 ms
54,264 KB |
testcase_29 | WA | - |
testcase_30 | WA | - |
testcase_31 | AC | 118 ms
53,840 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=9999; 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; if(i-a+1 <b){ b= i-a+1; } } } if(flag == 3){ System.out.println(b); }else{ System.out.println("-1"); } } }