結果

問題 No.346 チワワ数え上げ問題
ユーザー YoshiRyuYoshiRyu
提出日時 2017-04-13 13:08:46
言語 C#(csc)
(csc 3.9.0)
結果
WA  
実行時間 -
コード長 2,262 bytes
コンパイル時間 2,994 ms
コンパイル使用メモリ 103,872 KB
実行使用メモリ 28,140 KB
最終ジャッジ日時 2023-09-25 16:24:36
合計ジャッジ時間 11,824 ms
ジャッジサーバーID
(参考情報)
judge13 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 60 ms
28,140 KB
testcase_01 AC 59 ms
21,584 KB
testcase_02 AC 58 ms
19,688 KB
testcase_03 AC 60 ms
25,684 KB
testcase_04 AC 58 ms
21,600 KB
testcase_05 AC 58 ms
19,544 KB
testcase_06 AC 58 ms
21,644 KB
testcase_07 AC 58 ms
21,576 KB
testcase_08 AC 58 ms
21,500 KB
testcase_09 AC 59 ms
21,608 KB
testcase_10 WA -
testcase_11 AC 259 ms
23,864 KB
testcase_12 WA -
testcase_13 AC 216 ms
21,816 KB
testcase_14 AC 60 ms
23,560 KB
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 61 ms
22,312 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.Generic;
using System.IO;
using System.Linq;

public class YukiCoder
{
    public static void Solve()
    {
        var S = MyConsole.String();

        int ans = 0;

        int maxLen = S.LastIndexOf( 'w' ) + 1;

        for (int i = 0 ; i < maxLen ; i++)
        {
            if (S[i] == 'c')
            {
                int wCnt = 0;
                for (int j = i + 1 ; j < maxLen ; j++)
                    if (S[j] == 'w')
                        ans += wCnt++;
            }
        }

        MyConsole.wLine( ans.ToString() );
    }

    public static void Main()
    {
        MyConsole.Read(); Solve(); MyConsole.Finish();
    }
}

public static class MyConsole
{
    private static List<string> ReadedLine = new List<string>();
    private static char[] buf = new char[1024];
    private static int i;

    public static void Read()
    {
        string sr = Console.In.ReadToEnd();

        ReadedLine = sr.Split( new[] { '\r', '\n' }, StringSplitOptions.RemoveEmptyEntries ).ToList();

        InputRowCnt = ReadedLine.Count;

        Console.SetOut( new StreamWriter( Console.OpenStandardOutput() ) { AutoFlush = false } );
    }

    public static int InputRowCnt = 0;

    public static string String() { return ( i + 1 > ReadedLine.Count ) ? "" : ReadedLine[i++]; }
    public static string[] StringSplit() { return ReadedLine[i++].Split( new[] { ' ' } ); }

    public static int Int() { return int.Parse( ReadedLine[i++] ); }
    public static int[] IntSplit()
    {
        string[] strs = StringSplit();
        int[] ret = new int[strs.Length];
        for (int i = 0 ; i < strs.Length ; i++)
        {
            ret[i] = int.Parse( strs[i] );
        }

        return ret;
    }
    public static long Long() { return long.Parse( ReadedLine[i++] ); }
    public static double Double() { return double.Parse( ReadedLine[i++] ); }

    public static void Write( string output = null )
    {
        Console.Write( output );
    }

    public static void wLine( string output = null )
    {
        Console.WriteLine( output );
    }

    public static void Finish()
    {
        Console.Out.Flush();
    }
}
0