結果

問題 No.418 ミンミンゼミ
ユーザー curryudon08
提出日時 2020-02-18 22:31:58
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 24 ms / 1,000 ms
コード長 238 bytes
コンパイル時間 792 ms
コンパイル使用メモリ 108,208 KB
実行使用メモリ 25,996 KB
最終ジャッジ日時 2024-10-06 15:50:28
合計ジャッジ時間 2,212 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 1
other AC * 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.Linq;

namespace _0418
{
    class Program
    {
        static void Main(string[] args)
        {
            var s = Console.ReadLine();
            Console.WriteLine(s.Split('n').Length-1);
        }
    }
}
0