結果

問題 No.349 干支の置き物
ユーザー takoshi186takoshi186
提出日時 2016-08-01 20:51:59
言語 PHP
(8.3.4)
結果
AC  
実行時間 41 ms / 2,000 ms
コード長 244 bytes
コンパイル時間 119 ms
コンパイル使用メモリ 31,088 KB
実行使用メモリ 31,500 KB
最終ジャッジ日時 2024-11-17 07:37:39
合計ジャッジ時間 2,430 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
31,120 KB
testcase_01 AC 39 ms
31,044 KB
testcase_02 AC 40 ms
31,360 KB
testcase_03 AC 40 ms
31,300 KB
testcase_04 AC 39 ms
31,116 KB
testcase_05 AC 39 ms
31,100 KB
testcase_06 AC 39 ms
31,008 KB
testcase_07 AC 39 ms
31,248 KB
testcase_08 AC 37 ms
31,096 KB
testcase_09 AC 39 ms
31,072 KB
testcase_10 AC 38 ms
31,180 KB
testcase_11 AC 38 ms
31,352 KB
testcase_12 AC 37 ms
30,988 KB
testcase_13 AC 38 ms
31,112 KB
testcase_14 AC 38 ms
31,236 KB
testcase_15 AC 39 ms
31,024 KB
testcase_16 AC 40 ms
31,260 KB
testcase_17 AC 40 ms
31,244 KB
testcase_18 AC 39 ms
31,236 KB
testcase_19 AC 38 ms
31,172 KB
testcase_20 AC 40 ms
31,192 KB
testcase_21 AC 38 ms
31,052 KB
testcase_22 AC 40 ms
31,136 KB
testcase_23 AC 41 ms
31,316 KB
testcase_24 AC 40 ms
30,896 KB
testcase_25 AC 39 ms
31,368 KB
testcase_26 AC 40 ms
31,132 KB
testcase_27 AC 40 ms
31,312 KB
testcase_28 AC 39 ms
31,448 KB
testcase_29 AC 40 ms
31,196 KB
testcase_30 AC 38 ms
31,364 KB
testcase_31 AC 38 ms
31,500 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
No syntax errors detected in Main.php

ソースコード

diff #

<?php

$N = trim(fgets(STDIN));
$zodiac = array();
for( $i = 0; $i < $N; $i++ ){
    $zodiac[$i] = trim(fgets(STDIN));
}

$arr = array_count_values($zodiac);

if(max($arr) <= ceil(array_sum($arr) /2)) {
    echo "YES";
} else {
    echo "NO";
}
0