結果

問題 No.203 ゴールデン・ウィーク(1)
ユーザー fujita
提出日時 2023-05-09 11:29:05
言語 C#
(.NET 8.0.404)
結果
WA  
実行時間 -
コード長 1,225 bytes
コンパイル時間 9,447 ms
コンパイル使用メモリ 167,516 KB
実行使用メモリ 182,108 KB
最終ジャッジ日時 2024-11-25 23:01:24
合計ジャッジ時間 12,006 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 24 WA * 5
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.csproj を復元しました (95 ms)。
MSBuild のバージョン 17.9.6+a4ecab324 (.NET)
  main -> /home/judge/data/code/bin/Release/net8.0/main.dll
  main -> /home/judge/data/code/bin/Release/net8.0/publish/

ソースコード

diff #

using System;
namespace yukicoder
{
    class Program
    {

        static void Main(string[] args)
        {
            var str = Console.ReadLine();

            var str2 = Console.ReadLine();
            int temp = 0;
            string[] strings = new string[str.Length + str.Length];
            int vacation = 1, Maxvacation = 0;
            for(int i = 0; i < str.Length; i++)
            {
                strings[i] = str.Substring(i , 1);
                strings[i + 7] = str2.Substring(i, 1);
            }
            for (int j = 0; j < strings.Length - 1; j++)
            {
                if (strings[j] == "o" && strings[j + 1] == "o")
                {
                    vacation++;
                }
                
                
                else
                {
                    temp = vacation;
                    if(temp > Maxvacation)
                    {
                        Maxvacation = temp;
                    }                   
                    vacation = 1;
                }
            }
            if(str == "xxxxxxx" && str2 == "xxxxxxx")
            {
                Maxvacation = 0;
            }
            Console.WriteLine(Maxvacation);
        }
    }
}
0