結果

問題 No.516 赤と青の風船
ユーザー dyechidyechi
提出日時 2019-04-06 15:10:36
言語 PHP
(8.3.4)
結果
AC  
実行時間 47 ms / 2,000 ms
コード長 328 bytes
コンパイル時間 356 ms
コンパイル使用メモリ 32,216 KB
実行使用メモリ 31,208 KB
最終ジャッジ日時 2024-06-23 23:10:23
合計ジャッジ時間 1,683 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 47 ms
31,208 KB
testcase_01 AC 44 ms
31,120 KB
testcase_02 AC 41 ms
31,112 KB
testcase_03 AC 41 ms
30,892 KB
testcase_04 AC 40 ms
30,884 KB
testcase_05 AC 40 ms
31,176 KB
testcase_06 AC 40 ms
31,092 KB
testcase_07 AC 42 ms
31,168 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
No syntax errors detected in Main.php

ソースコード

diff #

<?php
while ($line = fgets(STDIN)) {
	$s[] = trim($line);
}

$RED_counter = 0;
$BLUE_counter = 0;
foreach ($s as $key => $value) {
    if ($value === "RED") {
        $RED_counter++;
    } else {
        $BLUE_counter++;
    }
}

if ($RED_counter > $BLUE_counter) {
    echo "RED".PHP_EOL;
} else {
    echo "BLUE".PHP_EOL;
}
?>
0