結果

問題 No.24 数当てゲーム
ユーザー jshimazu0820jshimazu0820
提出日時 2014-11-23 15:51:50
言語 PHP
(843.2)
結果
AC  
実行時間 52 ms / 5,000 ms
コード長 663 bytes
コンパイル時間 309 ms
コンパイル使用メモリ 36,248 KB
実行使用メモリ 36,628 KB
最終ジャッジ日時 2025-01-03 23:42:21
合計ジャッジ時間 1,363 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 49 ms
36,500 KB
testcase_01 AC 48 ms
36,500 KB
testcase_02 AC 46 ms
36,248 KB
testcase_03 AC 47 ms
36,120 KB
testcase_04 AC 48 ms
36,628 KB
testcase_05 AC 52 ms
36,248 KB
testcase_06 AC 49 ms
36,628 KB
testcase_07 AC 48 ms
36,352 KB
testcase_08 AC 48 ms
36,504 KB
testcase_09 AC 49 ms
36,628 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
No syntax errors detected in Main.php

ソースコード

diff #

<?php
$N = (int)trim(fgets(STDIN));

$inputs = [];
$input_adds = [];
for ($i = 0; $i<$N; $i++) {
  $input = explode(' ', trim(fgets(STDIN)));
  $inputs[$i] = $input;
  if ($input[4] == 'YES') {
    $input_adds[$i] = 1;
  } else {
    $input_adds[$i] = -1;
  }
}

$score = [];
foreach (range(0, 9) as $key) {
  $score[$key] = 0;
}


foreach ($inputs as $index => $input) {
  $score[$input[0]] += $input_adds[$index];
  $score[$input[1]] += $input_adds[$index];
  $score[$input[2]] += $input_adds[$index];
  $score[$input[3]] += $input_adds[$index];
}

arsort($score);
foreach ($score as $key => $s) {
  echo $key. "\n";
  break;
}
0