結果

問題 No.24 数当てゲーム
ユーザー mondomondo
提出日時 2019-07-29 13:18:46
言語 PHP
(843.2)
結果
AC  
実行時間 45 ms / 5,000 ms
コード長 398 bytes
コンパイル時間 92 ms
コンパイル使用メモリ 32,400 KB
実行使用メモリ 31,508 KB
最終ジャッジ日時 2024-07-02 15:17:07
合計ジャッジ時間 1,100 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
30,904 KB
testcase_01 AC 45 ms
31,104 KB
testcase_02 AC 36 ms
31,200 KB
testcase_03 AC 40 ms
31,508 KB
testcase_04 AC 41 ms
31,328 KB
testcase_05 AC 38 ms
31,228 KB
testcase_06 AC 37 ms
31,064 KB
testcase_07 AC 35 ms
31,176 KB
testcase_08 AC 37 ms
31,392 KB
testcase_09 AC 38 ms
31,380 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
No syntax errors detected in Main.php

ソースコード

diff #

<?php
$array10 = [0, 1, 2, 3, 4, 5, 6, 7, 8, 9,];
$count = trim(fgets(STDIN));
for($i = 0; $i < $count ; $i++) {
    $number = explode(' ', trim(fgets(STDIN)));
    $YESorNO = array_pop($number);
    if($YESorNO == 'YES') {
        $array10 = array_intersect($array10, $number);
    } else if ($YESorNO == 'NO') {
        $array10 = array_diff($array10, $number);
    }
}
echo implode("",$array10);
0