結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 23 ms
24,448 KB
testcase_01 AC 24 ms
18,944 KB
testcase_02 AC 23 ms
18,816 KB
testcase_03 AC 23 ms
18,816 KB
testcase_04 AC 24 ms
18,944 KB
testcase_05 AC 24 ms
18,560 KB
testcase_06 AC 25 ms
18,944 KB
testcase_07 AC 26 ms
18,688 KB
testcase_08 AC 22 ms
18,688 KB
testcase_09 AC 25 ms
18,816 KB
testcase_10 AC 125 ms
40,704 KB
testcase_11 AC 59 ms
34,176 KB
testcase_12 AC 86 ms
40,704 KB
testcase_13 AC 51 ms
29,184 KB
testcase_14 AC 25 ms
18,688 KB
testcase_15 AC 78 ms
40,576 KB
testcase_16 AC 101 ms
40,704 KB
testcase_17 AC 130 ms
40,960 KB
testcase_18 AC 126 ms
40,832 KB
testcase_19 AC 105 ms
40,704 KB
testcase_20 AC 28 ms
19,328 KB
testcase_21 TLE -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
権限があれば一括ダウンロードができます
コンパイルメッセージ
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