結果

問題 No.582 キャンディー・ボックス3
ユーザー papinianuspapinianus
提出日時 2017-11-14 16:52:45
言語 PHP
(8.3.4)
結果
AC  
実行時間 44 ms / 2,000 ms
コード長 393 bytes
コンパイル時間 140 ms
コンパイル使用メモリ 30,544 KB
実行使用メモリ 30,956 KB
最終ジャッジ日時 2024-05-03 21:30:49
合計ジャッジ時間 1,647 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
30,720 KB
testcase_01 AC 44 ms
30,912 KB
testcase_02 AC 41 ms
30,620 KB
testcase_03 AC 40 ms
30,412 KB
testcase_04 AC 41 ms
30,684 KB
testcase_05 AC 41 ms
30,740 KB
testcase_06 AC 41 ms
30,532 KB
testcase_07 AC 41 ms
30,752 KB
testcase_08 AC 41 ms
30,328 KB
testcase_09 AC 41 ms
30,712 KB
testcase_10 AC 41 ms
30,956 KB
testcase_11 AC 41 ms
30,788 KB
testcase_12 AC 40 ms
30,772 KB
testcase_13 AC 41 ms
30,640 KB
testcase_14 AC 41 ms
30,624 KB
testcase_15 AC 42 ms
30,588 KB
testcase_16 AC 41 ms
30,600 KB
testcase_17 AC 40 ms
30,868 KB
testcase_18 AC 42 ms
30,684 KB
testcase_19 AC 40 ms
30,708 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
No syntax errors detected in Main.php

ソースコード

diff #

<?php
$n = trim(fgets(STDIN));
$boxes = array_count_values(explode(" ", trim(fgets(STDIN))));
if(isset($boxes[0])) { $n -= $boxes[0]; unset($boxes[0]); }

if($n % 2 === 1) {
    $aVincible = isset($boxes[1]) && (count($boxes) === 1) ;
} else {
    $aVincible = isset($boxes[1]) && isset($boxes[2]) &&  (count($boxes) === 2)  && $boxes["2"] === 1;
}

echo $aVincible ? "A" : "B";
echo PHP_EOL;
0