結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
31,568 KB
testcase_01 AC 29 ms
71,652 KB
testcase_02 AC 29 ms
31,560 KB
testcase_03 AC 29 ms
24,296 KB
testcase_04 AC 29 ms
22,704 KB
testcase_05 AC 28 ms
24,880 KB
testcase_06 AC 29 ms
24,740 KB
testcase_07 AC 29 ms
24,544 KB
testcase_08 AC 29 ms
22,968 KB
testcase_09 AC 30 ms
26,856 KB
testcase_10 AC 136 ms
44,652 KB
testcase_11 AC 65 ms
42,156 KB
testcase_12 AC 93 ms
48,752 KB
testcase_13 AC 56 ms
35,512 KB
testcase_14 AC 29 ms
24,996 KB
testcase_15 AC 88 ms
46,856 KB
testcase_16 AC 109 ms
47,048 KB
testcase_17 AC 142 ms
48,848 KB
testcase_18 AC 134 ms
49,104 KB
testcase_19 AC 114 ms
46,988 KB
testcase_20 AC 31 ms
25,384 KB
testcase_21 TLE -
testcase_22 TLE -
testcase_23 AC 29 ms
26,856 KB
testcase_24 AC 28 ms
24,744 KB
testcase_25 AC 30 ms
31,696 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') cnt = cnt.Select(s => s+=1).ToList();
        }
        long ans = cnt.Select(s => Combination(s)).Sum();
        Console.WriteLine(ans);
    }
    static long Combination(int n)
    {
        return n * (n - 1) / 2;
    }
}

0