結果
問題 | No.346 チワワ数え上げ問題 |
ユーザー | Himatsubushin |
提出日時 | 2016-03-09 08:16:51 |
言語 | C#(csc) (csc 3.9.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 942 bytes |
コンパイル時間 | 1,036 ms |
コンパイル使用メモリ | 109,320 KB |
実行使用メモリ | 25,636 KB |
最終ジャッジ日時 | 2024-09-24 16:34:37 |
合計ジャッジ時間 | 2,776 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 23 ms
23,644 KB |
testcase_01 | AC | 24 ms
21,940 KB |
testcase_02 | AC | 24 ms
23,408 KB |
testcase_03 | AC | 24 ms
23,800 KB |
testcase_04 | AC | 24 ms
23,644 KB |
testcase_05 | AC | 23 ms
23,420 KB |
testcase_06 | AC | 24 ms
25,436 KB |
testcase_07 | AC | 24 ms
23,528 KB |
testcase_08 | AC | 25 ms
23,728 KB |
testcase_09 | AC | 24 ms
23,664 KB |
testcase_10 | AC | 25 ms
21,684 KB |
testcase_11 | AC | 24 ms
21,528 KB |
testcase_12 | AC | 24 ms
23,704 KB |
testcase_13 | AC | 24 ms
23,592 KB |
testcase_14 | AC | 24 ms
23,536 KB |
testcase_15 | AC | 26 ms
23,456 KB |
testcase_16 | AC | 25 ms
23,716 KB |
testcase_17 | AC | 26 ms
25,636 KB |
testcase_18 | AC | 24 ms
23,452 KB |
testcase_19 | AC | 25 ms
23,708 KB |
testcase_20 | AC | 26 ms
24,180 KB |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | AC | 24 ms
25,440 KB |
testcase_24 | AC | 24 ms
23,416 KB |
testcase_25 | AC | 24 ms
23,604 KB |
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc) Copyright (C) Microsoft Corporation. All rights reserved.
ソースコード
using System; using System.Collections.Generic; namespace No346 { class Program { static void Main(string[] args) { int count_c = 0; List<int> count_w = new List<int>(); long num = 0; int count = 0; string text = Console.ReadLine(); for (int i = 0; i < text.Length; i++) { if (text[i] == 'c') { count_w.Add(count_c); count_c = 0; } if (text[i] == 'w') count_c++; } count_w.Add(count_c); for (int i = count_w.Count - 1; i > 0; i--) { count += count_w[i]; if (count > 1) { num += count * (count - 1) / 2; } } Console.WriteLine(num); } } }