結果

問題 No.418 ミンミンゼミ
ユーザー rtomprtomp
提出日時 2016-09-20 16:15:43
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 31 ms / 1,000 ms
コード長 1,766 bytes
コンパイル時間 1,011 ms
コンパイル使用メモリ 112,372 KB
実行使用メモリ 27,096 KB
最終ジャッジ日時 2024-07-16 01:25:09
合計ジャッジ時間 2,639 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
24,704 KB
testcase_01 AC 29 ms
24,808 KB
testcase_02 AC 29 ms
22,712 KB
testcase_03 AC 29 ms
27,096 KB
testcase_04 AC 29 ms
24,804 KB
testcase_05 AC 29 ms
27,008 KB
testcase_06 AC 30 ms
26,976 KB
testcase_07 AC 29 ms
24,804 KB
testcase_08 AC 28 ms
24,804 KB
testcase_09 AC 28 ms
24,808 KB
testcase_10 AC 28 ms
24,676 KB
testcase_11 AC 29 ms
22,960 KB
testcase_12 AC 29 ms
27,012 KB
testcase_13 AC 29 ms
25,076 KB
testcase_14 AC 30 ms
24,876 KB
testcase_15 AC 31 ms
24,936 KB
testcase_16 AC 30 ms
25,088 KB
testcase_17 AC 30 ms
24,808 KB
testcase_18 AC 30 ms
25,060 KB
testcase_19 AC 30 ms
24,824 KB
testcase_20 AC 29 ms
27,000 KB
testcase_21 AC 30 ms
24,960 KB
testcase_22 AC 30 ms
24,752 KB
testcase_23 AC 30 ms
25,008 KB
testcase_24 AC 30 ms
24,800 KB
testcase_25 AC 30 ms
24,936 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()
    {
        string S = MyConsole.String();

        S = S.Replace( "-", "");

        string[] strs = S.Split( new []{"m"}, StringSplitOptions.RemoveEmptyEntries );

        int ans = strs.Count( s => s.Equals( "in" ) );

        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()
    {
        TextReader sr = Console.In;

        int Len = sr.Read( buf, 0, 1024 );
        var Line = string.Empty;

        for (int i = 0 ; i < Len ; i++)
        {
            if (buf[i] >= 33 && buf[i] <= 126)
            {
                Line += buf[i];
            }
            else if (Line.Length > 0)
            {
                ReadedLine.Add( Line );
                Line = string.Empty;
            }

        }
        if (Line.Length > 0) ReadedLine.Add( Line );

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

    public static string String() { return ReadedLine[i++]; }
    public static int Int() { return int.Parse( ReadedLine[i++] ); }
    public static long Long() { return long.Parse( ReadedLine[i++] ); }
    public static double Double() { return double.Parse( ReadedLine[i++] ); }

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

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