結果
問題 | No.346 チワワ数え上げ問題 |
ユーザー | shinwisteria |
提出日時 | 2017-04-01 10:14:38 |
言語 | Java21 (openjdk 21) |
結果 |
WA
|
実行時間 | - |
コード長 | 665 bytes |
コンパイル時間 | 2,906 ms |
コンパイル使用メモリ | 75,220 KB |
実行使用メモリ | 49,336 KB |
最終ジャッジ日時 | 2024-07-07 18:45:11 |
合計ジャッジ時間 | 14,118 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 111 ms
46,516 KB |
testcase_01 | AC | 99 ms
39,864 KB |
testcase_02 | AC | 107 ms
40,764 KB |
testcase_03 | AC | 110 ms
40,988 KB |
testcase_04 | AC | 104 ms
39,916 KB |
testcase_05 | AC | 97 ms
40,004 KB |
testcase_06 | AC | 111 ms
41,096 KB |
testcase_07 | AC | 110 ms
41,044 KB |
testcase_08 | AC | 98 ms
40,232 KB |
testcase_09 | AC | 101 ms
39,888 KB |
testcase_10 | WA | - |
testcase_11 | AC | 442 ms
42,432 KB |
testcase_12 | WA | - |
testcase_13 | AC | 398 ms
42,292 KB |
testcase_14 | AC | 134 ms
41,044 KB |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | TLE | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
ソースコード
import java.util.Scanner; public class Chiwawa { public static void main(String[] args) { // TODO 自動生成されたメソッド・スタブ Scanner s = new Scanner(System.in); StringBuilder str = new StringBuilder(s.nextLine()); s.close(); int all = 0; while(str.indexOf("c") != -1){ int t = str.indexOf("c"); int count = 0; for(int i = t;i < str.length();i++){ if(str.charAt(i) == 'w'){ count++; } } all += Combination(count,2); str.deleteCharAt(t); } System.out.println(all); } static int Combination(int r,int q){ int rCq = 1; for(int i = 1;i <= q;i++){ rCq = rCq * r-- / i; } return rCq; } }