結果
問題 |
No.203 ゴールデン・ウィーク(1)
|
ユーザー |
![]() |
提出日時 | 2023-05-09 11:41:34 |
言語 | C# (.NET 8.0.404) |
結果 |
AC
|
実行時間 | 53 ms / 1,000 ms |
コード長 | 1,415 bytes |
コンパイル時間 | 10,227 ms |
コンパイル使用メモリ | 170,564 KB |
実行使用メモリ | 183,012 KB |
最終ジャッジ日時 | 2024-12-30 22:44:03 |
合計ジャッジ時間 | 13,214 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge6 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 29 |
コンパイルメッセージ
復元対象のプロジェクトを決定しています... /home/judge/data/code/main.csproj を復元しました (199 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/
ソースコード
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 > Maxvacation && j == 12) { vacation++; if (vacation > Maxvacation && j == 12) { Maxvacation = vacation; } } else { temp = vacation; if(temp > Maxvacation ) { Maxvacation = temp; } vacation = 1; } } if(str == "xxxxxxx" && str2 == "xxxxxxx") { Maxvacation = 0; } Console.WriteLine(Maxvacation); } } }