結果
問題 | No.24 数当てゲーム |
ユーザー | Mizuno |
提出日時 | 2024-09-14 14:24:11 |
言語 | PHP (8.3.4) |
結果 |
WA
|
実行時間 | - |
コード長 | 678 bytes |
コンパイル時間 | 2,643 ms |
コンパイル使用メモリ | 31,504 KB |
実行使用メモリ | 32,528 KB |
最終ジャッジ日時 | 2024-09-14 14:24:15 |
合計ジャッジ時間 | 1,638 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 42 ms
30,844 KB |
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 // Your code here! $p = trim(fgets(STDIN)); for($i = 0; $i < $p; $i++) { $array[] = explode(" ",trim(fgets(STDIN))); } $num = range(0,9); for($i = 0; $i < $p; $i++) { if($array[$i][4] == "NO") { $num[$array[$i][0]] = "x"; $num[$array[$i][1]] = "x"; $num[$array[$i][2]] = "x"; $num[$array[$i][3]] = "x"; } else { for($i = 0; $i < 10; $i++) { if($i != $array[$i][0] || $i != $array[$i][1] || $i != $array[$i][2] || $i != $array[$i][3]) { $num[$i] = "x"; } } } } for($i = 0; $i < 10; $i++) { if($num[$i] != "x") { echo $num[$i]; break; } } ?>