結果

問題 No.346 チワワ数え上げ問題
ユーザー mbanmban
提出日時 2016-12-23 14:11:52
言語 C#(csc)
(csc 3.9.0)
結果
TLE  
実行時間 -
コード長 676 bytes
コンパイル時間 2,235 ms
コンパイル使用メモリ 106,688 KB
実行使用メモリ 42,556 KB
最終ジャッジ日時 2023-08-21 07:33:16
合計ジャッジ時間 7,873 ms
ジャッジサーバーID
(参考情報)
judge13 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 56 ms
42,556 KB
testcase_01 AC 57 ms
23,396 KB
testcase_02 AC 55 ms
23,560 KB
testcase_03 AC 55 ms
21,392 KB
testcase_04 AC 56 ms
21,464 KB
testcase_05 AC 56 ms
21,412 KB
testcase_06 AC 56 ms
21,460 KB
testcase_07 AC 56 ms
23,480 KB
testcase_08 AC 56 ms
21,528 KB
testcase_09 AC 56 ms
19,492 KB
testcase_10 AC 125 ms
21,412 KB
testcase_11 AC 81 ms
19,508 KB
testcase_12 AC 98 ms
21,432 KB
testcase_13 AC 76 ms
21,384 KB
testcase_14 AC 58 ms
23,412 KB
testcase_15 AC 95 ms
19,356 KB
testcase_16 AC 106 ms
23,496 KB
testcase_17 AC 116 ms
21,336 KB
testcase_18 AC 122 ms
21,384 KB
testcase_19 AC 108 ms
21,496 KB
testcase_20 AC 60 ms
22,228 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