結果

問題 No.418 ミンミンゼミ
ユーザー mimic_jagarmimic_jagar
提出日時 2017-05-27 13:33:33
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 52 ms / 1,000 ms
コード長 251 bytes
コンパイル時間 4,703 ms
コンパイル使用メモリ 105,604 KB
実行使用メモリ 23,472 KB
最終ジャッジ日時 2023-09-23 01:51:36
合計ジャッジ時間 5,095 ms
ジャッジサーバーID
(参考情報)
judge13 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 50 ms
21,368 KB
testcase_01 AC 50 ms
23,308 KB
testcase_02 AC 51 ms
23,408 KB
testcase_03 AC 52 ms
23,288 KB
testcase_04 AC 50 ms
21,300 KB
testcase_05 AC 51 ms
23,316 KB
testcase_06 AC 50 ms
23,284 KB
testcase_07 AC 50 ms
21,276 KB
testcase_08 AC 51 ms
21,380 KB
testcase_09 AC 50 ms
21,308 KB
testcase_10 AC 50 ms
23,380 KB
testcase_11 AC 50 ms
21,260 KB
testcase_12 AC 50 ms
23,304 KB
testcase_13 AC 49 ms
21,256 KB
testcase_14 AC 50 ms
21,436 KB
testcase_15 AC 52 ms
23,420 KB
testcase_16 AC 50 ms
23,344 KB
testcase_17 AC 51 ms
21,360 KB
testcase_18 AC 50 ms
21,316 KB
testcase_19 AC 50 ms
21,604 KB
testcase_20 AC 50 ms
21,344 KB
testcase_21 AC 50 ms
21,256 KB
testcase_22 AC 50 ms
23,280 KB
testcase_23 AC 50 ms
21,432 KB
testcase_24 AC 51 ms
23,472 KB
testcase_25 AC 51 ms
23,364 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.Linq;

namespace ConsoleApp2
{
    class Program
    {
        static void Main(string[] args)
        {
            int a =  Console.ReadLine().Count<char>(x => x == 'm');
            Console.WriteLine(a);
        }
    }
}
0