結果
問題 | No.24 数当てゲーム |
ユーザー | Mizuno |
提出日時 | 2024-09-14 14:06:14 |
言語 | PHP (8.3.4) |
結果 |
WA
|
実行時間 | - |
コード長 | 684 bytes |
コンパイル時間 | 3,679 ms |
コンパイル使用メモリ | 31,380 KB |
実行使用メモリ | 32,660 KB |
最終ジャッジ日時 | 2024-09-14 14:06:19 |
合計ジャッジ時間 | 3,558 ms |
ジャッジサーバーID (参考情報) |
judge6 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | AC | 41 ms
32,020 KB |
testcase_02 | WA | - |
testcase_03 | AC | 42 ms
32,276 KB |
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 // Your code here! $p = trim(fgets(STDIN)); for($i = 0; $i < $p; $i++) { $array[] = explode(" ",trim(fgets(STDIN))); } $num = range(0,9); $flag = false; for($i = 0; $i < $p; $i++) { if($array[$i][4] == "NO") { $num = array_diff($num, $array[$i]); } else { if($flag) { $val = []; for($j = 0; $j < 4; $j++) { if(in_array($array[$i][$j],$num)) { $val[] = $array[$i][$j]; } } $num = $val; } else { $num = array($array[$i][0],$array[$i][1],$array[$i][2],$array[$i][3]); $flag = true; } } } echo $num[0]; ?>