結果
問題 | No.24 数当てゲーム |
ユーザー | Ruizi_Luigi |
提出日時 | 2015-07-25 12:03:37 |
言語 | PHP (8.3.4) |
結果 |
WA
|
実行時間 | - |
コード長 | 473 bytes |
コンパイル時間 | 1,138 ms |
コンパイル使用メモリ | 32,084 KB |
実行使用メモリ | 32,788 KB |
最終ジャッジ日時 | 2024-07-16 04:52:00 |
合計ジャッジ時間 | 2,227 ms |
ジャッジサーバーID (参考情報) |
judge5 / 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 $N = trim(fgets(STDIN)); for ($i = 0; $i < $N; $i++) { list($a[0], $a[1], $a[2], $a[3], $r) = explode(' ', trim(fgets(STDIN))); if ($r == "NO") { for ($j = 0; $j < 4; $j++) $data[$a[$j]] -= 1; } else { $tmp = array(0,0,0,0,0,0,0,0,0,0); for ($j = 0; $j < 4; $j++) $tmp[$a[$j]] = 1; for ($j = 0; $j < 10; $j++) $data[$j] += ($tmp[$j]-1); } } echo array_search(max($data), $data) . "\n";