結果

問題 No.345 最小チワワ問題
ユーザー YoshiRyuYoshiRyu
提出日時 2017-04-13 10:40:43
言語 C#(csc)
(csc 3.9.0)
結果
WA  
実行時間 -
コード長 2,186 bytes
コンパイル時間 2,700 ms
コンパイル使用メモリ 109,224 KB
実行使用メモリ 23,768 KB
最終ジャッジ日時 2023-09-25 16:19:43
合計ジャッジ時間 5,688 ms
ジャッジサーバーID
(参考情報)
judge12 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 60 ms
21,592 KB
testcase_01 AC 61 ms
21,544 KB
testcase_02 AC 60 ms
21,476 KB
testcase_03 AC 60 ms
21,532 KB
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 AC 62 ms
23,552 KB
testcase_08 AC 61 ms
21,532 KB
testcase_09 AC 62 ms
19,476 KB
testcase_10 AC 60 ms
21,644 KB
testcase_11 AC 61 ms
19,572 KB
testcase_12 AC 63 ms
19,580 KB
testcase_13 AC 62 ms
23,768 KB
testcase_14 WA -
testcase_15 AC 59 ms
21,564 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 AC 59 ms
21,520 KB
testcase_20 AC 61 ms
21,520 KB
testcase_21 AC 61 ms
21,516 KB
testcase_22 AC 59 ms
21,532 KB
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 AC 64 ms
21,620 KB
testcase_29 WA -
testcase_30 WA -
testcase_31 AC 62 ms
21,636 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.Generic;
using System.IO;
using System.Linq;

public class YukiCoder
{
    public static void Solve()
    {
        var S = MyConsole.String();
        
        var fnc = new Func<int>( () => {
        
            int cIdx= S.IndexOf( 'c' );
            if (cIdx < 0) return -1;

            int wIdx = S.IndexOf( 'w', cIdx + 1 );
            if (wIdx < 0) return -1;

            wIdx = S.IndexOf( 'w', wIdx + 1 );
            if (wIdx < 0) return -1;

            return wIdx - cIdx + 1;
        } );

        MyConsole.wLine( fnc().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