結果

問題 No.346 チワワ数え上げ問題
ユーザー mbanmban
提出日時 2016-12-23 14:11:52
言語 C#(csc)
(csc 3.9.0)
結果
TLE  
実行時間 -
コード長 676 bytes
コンパイル時間 930 ms
コンパイル使用メモリ 114,292 KB
実行使用メモリ 50,252 KB
最終ジャッジ日時 2024-12-14 16:53:11
合計ジャッジ時間 8,846 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
31,316 KB
testcase_01 AC 29 ms
48,076 KB
testcase_02 AC 29 ms
31,436 KB
testcase_03 AC 29 ms
24,740 KB
testcase_04 AC 29 ms
24,876 KB
testcase_05 AC 29 ms
24,880 KB
testcase_06 AC 28 ms
24,644 KB
testcase_07 AC 29 ms
26,684 KB
testcase_08 AC 29 ms
24,364 KB
testcase_09 AC 29 ms
22,712 KB
testcase_10 AC 81 ms
26,492 KB
testcase_11 AC 47 ms
24,696 KB
testcase_12 AC 61 ms
24,444 KB
testcase_13 AC 44 ms
24,452 KB
testcase_14 AC 29 ms
26,556 KB
testcase_15 AC 57 ms
24,580 KB
testcase_16 AC 67 ms
24,708 KB
testcase_17 AC 82 ms
22,660 KB
testcase_18 AC 80 ms
24,572 KB
testcase_19 AC 69 ms
24,832 KB
testcase_20 AC 33 ms
25,436 KB
testcase_21 TLE -
testcase_22 TLE -
testcase_23 AC 28 ms
24,620 KB
testcase_24 AC 29 ms
24,632 KB
testcase_25 AC 29 ms
50,252 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc)
Copyright (C) Microsoft Corporation. All rights reserved.

ソースコード

diff #

using System;
using System.Collections;
using System.Collections.Generic;
using System.Collections.Specialized;
using System.Text;
using System.Text.RegularExpressions;
using System.Linq;

class Magatro
{
    static void Main()
    {
        string S = Console.ReadLine();
        List<int> cnt = new List<int>();
        for (int i = 0; i < S.Length; i++)
        {
            if (S[i] == 'c') cnt.Add(0);
            else if (S[i] == 'w') for (int j = 0; j < cnt.Count; j++) cnt[j]++;
        }
        long ans = cnt.Select(s => Combination(s)).Sum();
        Console.WriteLine(ans);
    }
    static long Combination(int n)
    {
        return n * (n - 1) / 2;
    }
}

0