結果
問題 | No.346 チワワ数え上げ問題 |
ユーザー | nglkrianbrjf |
提出日時 | 2016-02-27 00:07:28 |
言語 | Java21 (openjdk 21) |
結果 |
WA
|
実行時間 | - |
コード長 | 677 bytes |
コンパイル時間 | 3,333 ms |
コンパイル使用メモリ | 74,680 KB |
実行使用メモリ | 51,328 KB |
最終ジャッジ日時 | 2024-09-24 10:40:42 |
合計ジャッジ時間 | 6,003 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 56 ms
50,236 KB |
testcase_01 | AC | 55 ms
50,308 KB |
testcase_02 | AC | 56 ms
49,984 KB |
testcase_03 | AC | 57 ms
49,900 KB |
testcase_04 | AC | 57 ms
50,216 KB |
testcase_05 | AC | 56 ms
49,988 KB |
testcase_06 | AC | 56 ms
50,296 KB |
testcase_07 | AC | 55 ms
50,332 KB |
testcase_08 | AC | 56 ms
50,288 KB |
testcase_09 | AC | 56 ms
50,220 KB |
testcase_10 | WA | - |
testcase_11 | AC | 69 ms
50,456 KB |
testcase_12 | WA | - |
testcase_13 | AC | 68 ms
50,684 KB |
testcase_14 | AC | 58 ms
50,200 KB |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | AC | 83 ms
51,072 KB |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | AC | 56 ms
50,268 KB |
testcase_24 | AC | 55 ms
50,268 KB |
testcase_25 | AC | 56 ms
50,364 KB |
ソースコード
import java.io.BufferedReader; import java.io.IOException; import java.io.InputStreamReader; public class QuestionB { public static void main(String[] args) { // TODO 自動生成されたメソッド・スタブ BufferedReader in = new BufferedReader(new InputStreamReader(System.in)); String line; try{ line = in.readLine(); }catch(IOException e){ System.out.println("0"); return; } int result = 0; int wcount = 0; boolean check = false; for(int i = line.length() - 1; i >= 0; i--){ if(line.charAt(i) == 'c') result += wcount * (wcount - 1)/2; if(line.charAt(i) == 'w'){ wcount++; } } System.out.println(result); } }