結果

問題 No.203 ゴールデン・ウィーク(1)
ユーザー soi09476291
提出日時 2019-11-20 14:31:16
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 22 ms / 1,000 ms
コード長 1,071 bytes
コンパイル時間 3,463 ms
コンパイル使用メモリ 102,784 KB
実行使用メモリ 17,792 KB
最終ジャッジ日時 2024-10-06 11:28:49
合計ジャッジ時間 3,088 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 29
権限があれば一括ダウンロードができます
コンパイルメッセージ
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.Text;
using System.Linq;

namespace ConsoleApp11
{
    class Program
    {
        static void Main(string[] args)
        {
            int count = 0;
            int max = 0;

            char[,] C = new char[2,7];

            for(int i = 0; i < 2; i++)
            {
                var input = Console.ReadLine().Trim();

                for(int j = 0; j < 7; j++)
                {
                    C[i, j] = input[j];
                }
            }

            for(int i = 0; i < 2; i++)
            {
                for(int j = 0; j < 7; j++)
                {
                    if (C[i, j] == 'o')
                    {
                        count++;

                        if (count > max)
                        {
                            max = count;
                        }
                    }
                    else if (C[i, j] == 'x')
                    {
                        count = 0;
                    }
                }
            }
            Console.WriteLine(max);
        }        
    }
}
0