結果
問題 | No.346 チワワ数え上げ問題 |
ユーザー | mizunomi32 |
提出日時 | 2016-03-01 09:13:07 |
言語 | Java21 (openjdk 21) |
結果 |
TLE
|
実行時間 | - |
コード長 | 699 bytes |
コンパイル時間 | 3,849 ms |
コンパイル使用メモリ | 78,964 KB |
実行使用メモリ | 62,584 KB |
最終ジャッジ日時 | 2024-09-24 13:00:14 |
合計ジャッジ時間 | 8,748 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 140 ms
60,640 KB |
testcase_01 | AC | 126 ms
53,928 KB |
testcase_02 | AC | 110 ms
52,796 KB |
testcase_03 | AC | 123 ms
54,500 KB |
testcase_04 | AC | 154 ms
53,860 KB |
testcase_05 | AC | 127 ms
53,816 KB |
testcase_06 | AC | 139 ms
54,212 KB |
testcase_07 | AC | 129 ms
54,244 KB |
testcase_08 | AC | 130 ms
53,980 KB |
testcase_09 | AC | 138 ms
54,232 KB |
testcase_10 | TLE | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
ソースコード
import java.util.Scanner; public class main { public static void main (String[] args){ Scanner sc = new Scanner(System.in); String S=sc.nextLine(); char[] chars = S.toCharArray(); int slen= S.length(); int count =0; for(int i =0;i<slen;i++){ if(chars[i]=='c'){ for(int j =1 ; j<slen-i;j++) { if(chars[i+j]=='w'){ for (int k =1;k<slen -i-j;k++) if(chars[i+j+k]=='w'){ count++; } } } } } System.out.println(count); } }