結果

問題 No.79 過小評価ダメ・ゼッタイ
ユーザー papinianuspapinianus
提出日時 2016-06-03 15:19:29
言語 PHP
(8.3.4)
結果
AC  
実行時間 46 ms / 5,000 ms
コード長 200 bytes
コンパイル時間 2,954 ms
コンパイル使用メモリ 30,512 KB
実行使用メモリ 33,552 KB
最終ジャッジ日時 2024-06-26 07:56:11
合計ジャッジ時間 2,478 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
31,192 KB
testcase_01 AC 46 ms
33,292 KB
testcase_02 AC 40 ms
31,340 KB
testcase_03 AC 40 ms
31,084 KB
testcase_04 AC 40 ms
31,168 KB
testcase_05 AC 45 ms
33,292 KB
testcase_06 AC 40 ms
31,032 KB
testcase_07 AC 41 ms
30,976 KB
testcase_08 AC 41 ms
31,484 KB
testcase_09 AC 40 ms
31,476 KB
testcase_10 AC 41 ms
31,300 KB
testcase_11 AC 41 ms
31,268 KB
testcase_12 AC 40 ms
31,204 KB
testcase_13 AC 40 ms
31,484 KB
testcase_14 AC 43 ms
31,632 KB
testcase_15 AC 41 ms
31,116 KB
testcase_16 AC 44 ms
33,104 KB
testcase_17 AC 40 ms
31,336 KB
testcase_18 AC 44 ms
33,036 KB
testcase_19 AC 42 ms
31,888 KB
testcase_20 AC 45 ms
33,552 KB
testcase_21 AC 41 ms
31,332 KB
testcase_22 AC 42 ms
31,264 KB
testcase_23 AC 45 ms
33,292 KB
testcase_24 AC 45 ms
33,292 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
No syntax errors detected in Main.php

ソースコード

diff #

<?php
$null = trim(fgets(STDIN));
$sheet = array_fill(0, 11, 0);
$lv = explode(' ', trim(fgets(STDIN)));
foreach($lv as $val) {
    $sheet[$val]++;
}
echo max(array_keys($sheet, max($sheet))).PHP_EOL;
0