結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
31,140 KB
testcase_01 AC 42 ms
31,212 KB
testcase_02 AC 42 ms
30,944 KB
testcase_03 AC 41 ms
31,032 KB
testcase_04 AC 40 ms
30,920 KB
testcase_05 AC 40 ms
30,812 KB
testcase_06 AC 40 ms
31,168 KB
testcase_07 AC 40 ms
31,256 KB
testcase_08 AC 43 ms
30,692 KB
testcase_09 AC 42 ms
31,092 KB
testcase_10 AC 41 ms
30,984 KB
testcase_11 AC 42 ms
31,000 KB
testcase_12 AC 42 ms
31,276 KB
testcase_13 AC 43 ms
31,064 KB
testcase_14 AC 43 ms
30,840 KB
testcase_15 AC 42 ms
30,908 KB
testcase_16 AC 42 ms
30,836 KB
testcase_17 AC 41 ms
30,904 KB
testcase_18 WA -
testcase_19 AC 42 ms
31,076 KB
testcase_20 WA -
testcase_21 AC 40 ms
30,916 KB
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 AC 41 ms
31,092 KB
testcase_26 AC 40 ms
30,804 KB
testcase_27 AC 39 ms
30,928 KB
testcase_28 AC 40 ms
31,220 KB
testcase_29 WA -
testcase_30 WA -
testcase_31 AC 40 ms
31,024 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