結果

問題 No.204 ゴールデン・ウィーク(2)
ユーザー bluemeganebluemegane
提出日時 2018-09-30 13:55:35
言語 C#(csc)
(csc 3.9.0)
結果
WA  
実行時間 -
コード長 1,173 bytes
コンパイル時間 4,370 ms
コンパイル使用メモリ 110,696 KB
実行使用メモリ 29,300 KB
最終ジャッジ日時 2024-10-12 09:03:35
合計ジャッジ時間 3,643 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 29 ms
25,364 KB
testcase_02 AC 29 ms
25,088 KB
testcase_03 AC 29 ms
27,516 KB
testcase_04 AC 30 ms
27,524 KB
testcase_05 AC 29 ms
25,108 KB
testcase_06 AC 29 ms
25,472 KB
testcase_07 AC 30 ms
25,516 KB
testcase_08 AC 30 ms
25,236 KB
testcase_09 AC 28 ms
25,496 KB
testcase_10 AC 29 ms
25,364 KB
testcase_11 AC 29 ms
27,264 KB
testcase_12 AC 30 ms
27,272 KB
testcase_13 AC 30 ms
23,472 KB
testcase_14 AC 31 ms
27,408 KB
testcase_15 AC 30 ms
27,280 KB
testcase_16 AC 30 ms
25,340 KB
testcase_17 AC 29 ms
25,368 KB
testcase_18 AC 28 ms
25,516 KB
testcase_19 AC 29 ms
25,232 KB
testcase_20 AC 28 ms
25,088 KB
testcase_21 AC 29 ms
27,256 KB
testcase_22 AC 29 ms
25,492 KB
testcase_23 AC 30 ms
27,260 KB
testcase_24 AC 30 ms
27,400 KB
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 AC 30 ms
25,520 KB
testcase_29 AC 31 ms
25,488 KB
testcase_30 AC 31 ms
25,516 KB
testcase_31 AC 30 ms
25,492 KB
testcase_32 AC 29 ms
25,488 KB
testcase_33 AC 30 ms
25,372 KB
testcase_34 AC 30 ms
27,132 KB
testcase_35 AC 30 ms
25,392 KB
testcase_36 AC 29 ms
23,220 KB
testcase_37 AC 29 ms
25,364 KB
testcase_38 AC 29 ms
25,232 KB
testcase_39 AC 29 ms
27,664 KB
testcase_40 AC 28 ms
25,500 KB
testcase_41 WA -
testcase_42 AC 29 ms
25,260 KB
testcase_43 AC 28 ms
23,600 KB
testcase_44 AC 30 ms
27,260 KB
testcase_45 AC 29 ms
25,220 KB
testcase_46 AC 29 ms
25,368 KB
testcase_47 AC 30 ms
25,216 KB
testcase_48 WA -
権限があれば一括ダウンロードができます
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc)
Copyright (C) Microsoft Corporation. All rights reserved.

ソースコード

diff #

using System.Collections.Generic;
using System.Linq;
using System;

public class Hello
{
    public static void Main()
    {
        var n = int.Parse(Console.ReadLine().Trim());
        var t = new string('x', n);
        var t2 = new string('o', n);
        var s = t + Console.ReadLine().Trim() + Console.ReadLine().Trim() + t;
        var p = 0;
        var ans = new List<int>();
        while (p <= s.Length - n)
        {
            var a = s.IndexOf(t, p);
            if (p >= 0)
            {
                var a2 = s.Substring(0, a) + t2 + s.Substring(a + n);
                ans.Add(countO(a2));
                p++;
            }
            else break;
        }
        Console.WriteLine(ans.Max());
    }
    public static int countO(string s)
    {
        var ans = 0;
        var count = 0;
        var cbegin = false;
        foreach (var x in s)
            if (x == 'o')
            {
                count++;
                if (cbegin) ans = Math.Max(ans, count);
                else cbegin = true;
            }
            else
            {
                count = 0;
                cbegin = false;
            }
        return ans;
    }
}
0