結果
問題 | No.24 数当てゲーム |
ユーザー | Mizuno |
提出日時 | 2024-09-14 14:24:59 |
言語 | PHP (8.3.4) |
結果 |
WA
|
実行時間 | - |
コード長 | 678 bytes |
コンパイル時間 | 112 ms |
コンパイル使用メモリ | 32,020 KB |
実行使用メモリ | 32,528 KB |
最終ジャッジ日時 | 2024-09-14 14:25:02 |
合計ジャッジ時間 | 1,137 ms |
ジャッジサーバーID (参考情報) |
judge6 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 44 ms
31,048 KB |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | AC | 42 ms
30,912 KB |
testcase_06 | WA | - |
testcase_07 | AC | 42 ms
31,148 KB |
testcase_08 | WA | - |
testcase_09 | AC | 42 ms
30,968 KB |
コンパイルメッセージ
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($j = 0; $j < 10; $j++) { if($j != $array[$i][0] || $j != $array[$i][1] || $j != $array[$i][2] || $j != $array[$i][3]) { $num[$i] = "x"; } } } } for($i = 0; $i < 10; $i++) { if($num[$i] != "x") { echo $num[$i]; break; } } ?>