結果

問題 No.2298 yukicounter
ユーザー kakel-sankakel-san
提出日時 2023-07-27 08:43:13
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 32 ms / 2,000 ms
コード長 995 bytes
コンパイル時間 856 ms
コンパイル使用メモリ 111,380 KB
実行使用メモリ 26,192 KB
最終ジャッジ日時 2024-10-04 00:52:57
合計ジャッジ時間 3,275 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 19 ms
23,764 KB
testcase_01 AC 20 ms
23,500 KB
testcase_02 AC 19 ms
23,532 KB
testcase_03 AC 28 ms
24,940 KB
testcase_04 AC 23 ms
25,508 KB
testcase_05 AC 20 ms
23,240 KB
testcase_06 AC 32 ms
26,088 KB
testcase_07 AC 23 ms
23,432 KB
testcase_08 AC 21 ms
25,732 KB
testcase_09 AC 21 ms
23,420 KB
testcase_10 AC 20 ms
25,572 KB
testcase_11 AC 22 ms
25,472 KB
testcase_12 AC 21 ms
25,596 KB
testcase_13 AC 21 ms
23,476 KB
testcase_14 AC 22 ms
23,296 KB
testcase_15 AC 19 ms
25,400 KB
testcase_16 AC 19 ms
23,428 KB
testcase_17 AC 19 ms
25,412 KB
testcase_18 AC 19 ms
23,492 KB
testcase_19 AC 20 ms
23,532 KB
testcase_20 AC 21 ms
23,624 KB
testcase_21 AC 21 ms
23,408 KB
testcase_22 AC 23 ms
23,568 KB
testcase_23 AC 22 ms
23,708 KB
testcase_24 AC 32 ms
26,192 KB
testcase_25 AC 26 ms
24,436 KB
testcase_26 AC 22 ms
25,352 KB
testcase_27 AC 27 ms
25,316 KB
testcase_28 AC 21 ms
23,568 KB
testcase_29 AC 22 ms
23,320 KB
testcase_30 AC 20 ms
23,384 KB
testcase_31 AC 22 ms
25,340 KB
testcase_32 AC 22 ms
25,472 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 static System.Console;
using System.Linq;
using System.Collections.Generic;
class Program
{
    static int NN => int.Parse(ReadLine());
    static int[] NList => ReadLine().Split().Select(int.Parse).ToArray();
    public static void Main()
    {
        Solve();
    }
    static void Solve()
    {
        var s = ReadLine();
        var ans = 0;
        var tmp = 0;
        for (var i = 0; i < s.Length; ++i)
        {
            if (IsYuki(i, s))
            {
                ++tmp;
                i += yuki.Length - 1;
            }
            else tmp = 0;
            ans = Math.Max(ans, tmp);
        }
        WriteLine(ans);
    }
    static string yuki = "yukicoder";
    static bool IsYuki(int pos, string s)
    {
        if (pos + yuki.Length > s.Length) return false;
        for (var i = 0; i < yuki.Length; ++i)
        {
            if (yuki[i] != s[pos + i]) return false;
        }
        return true;
    }
}
0