結果

問題 No.24 数当てゲーム
ユーザー ayaaya
提出日時 2019-07-24 15:43:41
言語 PHP
(8.3.4)
結果
AC  
実行時間 45 ms / 5,000 ms
コード長 917 bytes
コンパイル時間 70 ms
コンパイル使用メモリ 30,904 KB
実行使用メモリ 31,472 KB
最終ジャッジ日時 2024-06-28 01:45:32
合計ジャッジ時間 1,040 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
31,348 KB
testcase_01 AC 45 ms
31,452 KB
testcase_02 AC 43 ms
31,340 KB
testcase_03 AC 41 ms
31,208 KB
testcase_04 AC 41 ms
31,084 KB
testcase_05 AC 41 ms
31,208 KB
testcase_06 AC 40 ms
31,100 KB
testcase_07 AC 42 ms
31,472 KB
testcase_08 AC 41 ms
31,244 KB
testcase_09 AC 41 ms
31,192 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
No syntax errors detected in Main.php

ソースコード

diff #

<?php


$array=array_fill(0,10,null);
$N=trim(fgets(STDIN));
for($i=0;$i<$N;$i++){
  $line=trim(fgets(STDIN));
  $input= explode(" ",$line);
  if($input[4]=="NO"){
    for($x=0;$x<4;$x++){
      $array[$input[$x]]=0;
    }
  }elseif($input[4]=="YES"){
    for($y=0;$y<4;$y++){
      $hantei=$array[$input[$y]];
      if(is_null($array[$input[$y]])){
        $array[$input[$y]]=1;
      }elseif($array[$input[$y]]===1){
        $array[$input[$y]]=2;
      }elseif($array[$input[$y]]===2){
      $array[$input[$y]]=3;
      }elseif($array[$input[$y]]===3){
        $array[$input[$y]]=4;
        }
      
    }
  }
}
arsort($array);
foreach ($array as $key =>$value){

  if($value==4){
    echo $key;
    break;
  }elseif($value==3){
    echo $key;
    break;
  }elseif($value==2){
    echo $key;
    break;
  }else if($value==1){
    echo $key;
    break;
  }else if(is_null($value)){
    echo $key;
    break;
}

}

?>
0