結果

問題 No.24 数当てゲーム
ユーザー ayaaya
提出日時 2019-07-24 15:53:29
言語 PHP
(8.3.4)
結果
AC  
実行時間 45 ms / 5,000 ms
コード長 895 bytes
コンパイル時間 101 ms
コンパイル使用メモリ 31,088 KB
実行使用メモリ 31,532 KB
最終ジャッジ日時 2024-06-28 01:45:38
合計ジャッジ時間 998 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
31,264 KB
testcase_01 AC 42 ms
31,428 KB
testcase_02 AC 45 ms
31,260 KB
testcase_03 AC 41 ms
31,268 KB
testcase_04 AC 40 ms
31,056 KB
testcase_05 AC 40 ms
31,324 KB
testcase_06 AC 40 ms
31,284 KB
testcase_07 AC 41 ms
31,388 KB
testcase_08 AC 40 ms
31,272 KB
testcase_09 AC 40 ms
31,532 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
No syntax errors detected in Main.php

ソースコード

diff #

<?php
//No.24 数当てゲーム

$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]]="NO";
    }

    //YESをもらった回数を$valueに入れていく

  }elseif($input[4]=="YES"){
    for($x=0;$x<4;$x++){
      $hantei=$array[$input[$x]];
      if(is_null($array[$input[$x]])){
        $array[$input[$x]]=1;
      }elseif(is_int($array[$input[$x]])){
        $array[$input[$x]]=$array[$input[$x]]+1;
      }
      
    }
  }
}
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