結果

問題 No.203 ゴールデン・ウィーク(1)
ユーザー ayaaya
提出日時 2019-07-29 15:28:21
言語 PHP
(8.3.4)
結果
AC  
実行時間 39 ms / 1,000 ms
コード長 967 bytes
コンパイル時間 163 ms
コンパイル使用メモリ 31,148 KB
実行使用メモリ 31,552 KB
最終ジャッジ日時 2024-07-02 15:21:19
合計ジャッジ時間 2,223 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
30,988 KB
testcase_01 AC 35 ms
31,276 KB
testcase_02 AC 34 ms
31,132 KB
testcase_03 AC 32 ms
30,864 KB
testcase_04 AC 34 ms
31,488 KB
testcase_05 AC 36 ms
31,384 KB
testcase_06 AC 35 ms
31,552 KB
testcase_07 AC 34 ms
31,316 KB
testcase_08 AC 34 ms
31,028 KB
testcase_09 AC 33 ms
31,260 KB
testcase_10 AC 37 ms
31,024 KB
testcase_11 AC 36 ms
31,340 KB
testcase_12 AC 37 ms
31,388 KB
testcase_13 AC 39 ms
31,468 KB
testcase_14 AC 35 ms
31,312 KB
testcase_15 AC 37 ms
31,260 KB
testcase_16 AC 39 ms
30,896 KB
testcase_17 AC 38 ms
31,104 KB
testcase_18 AC 38 ms
31,204 KB
testcase_19 AC 38 ms
31,136 KB
testcase_20 AC 39 ms
31,224 KB
testcase_21 AC 39 ms
31,504 KB
testcase_22 AC 38 ms
31,456 KB
testcase_23 AC 36 ms
31,512 KB
testcase_24 AC 36 ms
31,264 KB
testcase_25 AC 38 ms
31,276 KB
testcase_26 AC 36 ms
31,248 KB
testcase_27 AC 34 ms
31,264 KB
testcase_28 AC 36 ms
31,428 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
No syntax errors detected in Main.php

ソースコード

diff #

<?php
/**
 * No.203 ゴールデン・ウィーク(1)
 * 問題文
 *巷ではゴールデンウィークらしいです。
 *なのでゴールデンウィークっぽい問題です。
 *
 *2週間分の平日(x)と休日(o)が分かるカレンダーが与えられます。
 *この2週間の期間以外は、平日とします。
 *
 *最大の連休(連続の休日)数を求めてください。
 *
 *入力
 *C1C2....C7
 *C8C9....C14
 *Ciは、"x"か"o"の文字です。 "x"は平日、"o"は休日を表します。
 *C1,C2...,CNと連続している日を表すものとします。
 */

 
 $week1=str_split(trim(fgets(STDIN)));
 $week2=str_split(trim(fgets(STDIN)));
 $days=array_merge($week1,$week2);
 $consecutiveHolidays=0;
 $cnt=0;
 foreach($days as $key =>$value){
  if($value=="o"){
    $cnt++;
    if($consecutiveHolidays<$cnt){
      $consecutiveHolidays=$cnt;
    }
  }else if($value=="x"){
    $cnt =0;
  }
 }
 echo $consecutiveHolidays;
?>
0