結果

問題 No.346 チワワ数え上げ問題
ユーザー mbanmban
提出日時 2016-12-23 14:11:52
言語 C#(csc)
(csc 3.9.0)
結果
TLE  
実行時間 -
コード長 676 bytes
コンパイル時間 983 ms
コンパイル使用メモリ 107,264 KB
実行使用メモリ 24,192 KB
最終ジャッジ日時 2024-05-08 12:50:35
合計ジャッジ時間 5,532 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 27 ms
24,192 KB
testcase_01 AC 27 ms
18,816 KB
testcase_02 AC 27 ms
18,688 KB
testcase_03 AC 27 ms
18,688 KB
testcase_04 AC 27 ms
18,432 KB
testcase_05 AC 27 ms
18,688 KB
testcase_06 AC 27 ms
18,560 KB
testcase_07 AC 27 ms
18,560 KB
testcase_08 AC 28 ms
18,816 KB
testcase_09 AC 28 ms
18,688 KB
testcase_10 AC 79 ms
18,764 KB
testcase_11 AC 47 ms
18,624 KB
testcase_12 AC 60 ms
18,248 KB
testcase_13 AC 41 ms
18,756 KB
testcase_14 AC 27 ms
18,688 KB
testcase_15 AC 56 ms
18,508 KB
testcase_16 AC 64 ms
18,756 KB
testcase_17 AC 80 ms
18,628 KB
testcase_18 AC 78 ms
18,376 KB
testcase_19 AC 67 ms
18,496 KB
testcase_20 AC 31 ms
19,200 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') 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