結果
問題 | No.516 赤と青の風船 |
ユーザー | mondo |
提出日時 | 2019-07-31 17:10:53 |
言語 | PHP (8.3.4) |
結果 |
WA
|
実行時間 | - |
コード長 | 190 bytes |
コンパイル時間 | 170 ms |
コンパイル使用メモリ | 32,144 KB |
実行使用メモリ | 32,660 KB |
最終ジャッジ日時 | 2024-07-05 06:52:05 |
合計ジャッジ時間 | 938 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
コンパイルメッセージ
No syntax errors detected in Main.php
ソースコード
<?php $array = array(); for ($i = 0; $i < 3; $i++) { $array[] = trim(fgets(STDIN)); } $color = array_count_values($array); print_r($color); echo $color["RED"] >= 2 ? "RED" : "BLUE";