結果

問題 No.349 干支の置き物
ユーザー papinianuspapinianus
提出日時 2016-07-27 17:18:06
言語 PHP
(8.3.4)
結果
WA  
実行時間 -
コード長 286 bytes
コンパイル時間 180 ms
コンパイル使用メモリ 30,548 KB
実行使用メモリ 31,364 KB
最終ジャッジ日時 2024-11-06 17:58:49
合計ジャッジ時間 2,518 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
31,120 KB
testcase_01 AC 43 ms
30,940 KB
testcase_02 AC 43 ms
31,000 KB
testcase_03 AC 40 ms
30,920 KB
testcase_04 AC 40 ms
30,996 KB
testcase_05 AC 41 ms
31,364 KB
testcase_06 AC 40 ms
31,064 KB
testcase_07 AC 41 ms
30,672 KB
testcase_08 AC 41 ms
30,912 KB
testcase_09 AC 41 ms
31,072 KB
testcase_10 AC 41 ms
30,952 KB
testcase_11 AC 41 ms
31,272 KB
testcase_12 AC 42 ms
30,984 KB
testcase_13 AC 43 ms
31,092 KB
testcase_14 AC 42 ms
31,040 KB
testcase_15 AC 42 ms
30,776 KB
testcase_16 AC 41 ms
30,852 KB
testcase_17 AC 41 ms
30,884 KB
testcase_18 AC 40 ms
31,044 KB
testcase_19 AC 42 ms
30,736 KB
testcase_20 AC 42 ms
31,008 KB
testcase_21 AC 42 ms
31,036 KB
testcase_22 WA -
testcase_23 AC 42 ms
30,948 KB
testcase_24 WA -
testcase_25 AC 41 ms
30,848 KB
testcase_26 AC 42 ms
31,288 KB
testcase_27 AC 43 ms
31,084 KB
testcase_28 AC 42 ms
31,032 KB
testcase_29 WA -
testcase_30 AC 41 ms
30,764 KB
testcase_31 AC 42 ms
30,748 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
No syntax errors detected in Main.php

ソースコード

diff #

<?php
$n = trim(fgets(STDIN));
$statue = [];
for($i=0;$i<$n;$i++) {
    $eto = trim(fgets(STDIN));
    if(isset($statue[$eto])) {
        $statue[$eto]++;
    } else {
        $statue[$eto] = 1;
    }
}
if(max($statue) <= $n /2) {
    echo "YES";
} else {
    echo "NO";
}
echo PHP_EOL;
0