結果
問題 | No.24 数当てゲーム |
ユーザー | しのっち |
提出日時 | 2019-05-16 15:31:14 |
言語 | PHP (8.3.4) |
結果 |
WA
|
実行時間 | - |
コード長 | 775 bytes |
コンパイル時間 | 1,112 ms |
コンパイル使用メモリ | 32,532 KB |
実行使用メモリ | 32,916 KB |
最終ジャッジ日時 | 2024-09-17 05:31:34 |
合計ジャッジ時間 | 2,104 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
コンパイルメッセージ
No syntax errors detected in Main.php
ソースコード
<?php $answer = ""; $expected = []; $numbers = []; $numeric_suspects = [0,1,2,3,4,5,6,7,8,9]; $turns = trim(fgets(STDIN)); for ($i = 1; $i < $turns; $i++) { $numbers = explode(" ", trim(fgets(STDIN))); $expected[$i]["result"] = $numbers[4]; $expected[$i]["numbers"] = [ $numbers[0], $numbers[1], $numbers[2], $numbers[3] ]; } for ($i = 1; $i <= $turns; $i++) { if ($expected[$i]["result"] == "YES") { $numeric_suspects = array_intersect($numeric_suspects, $expected[$i]["numbers"]); } elseif ($expected[$i]["result"] == "NO") { $numeric_suspects = array_diff($numeric_suspects, $expected[$i]["numbers"]); } } foreach($numeric_suspects as $answer) { echo $answer; }