結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
30,728 KB
testcase_01 AC 47 ms
32,912 KB
testcase_02 AC 41 ms
30,644 KB
testcase_03 AC 39 ms
30,676 KB
testcase_04 AC 40 ms
30,820 KB
testcase_05 AC 43 ms
32,652 KB
testcase_06 AC 39 ms
30,844 KB
testcase_07 AC 39 ms
30,808 KB
testcase_08 AC 40 ms
31,012 KB
testcase_09 AC 41 ms
30,948 KB
testcase_10 AC 40 ms
30,844 KB
testcase_11 AC 40 ms
30,764 KB
testcase_12 AC 40 ms
30,876 KB
testcase_13 AC 40 ms
30,720 KB
testcase_14 AC 41 ms
31,500 KB
testcase_15 AC 41 ms
30,808 KB
testcase_16 AC 43 ms
32,524 KB
testcase_17 AC 41 ms
30,988 KB
testcase_18 AC 42 ms
32,528 KB
testcase_19 AC 42 ms
31,500 KB
testcase_20 AC 45 ms
33,040 KB
testcase_21 AC 40 ms
30,676 KB
testcase_22 AC 43 ms
30,860 KB
testcase_23 AC 44 ms
32,652 KB
testcase_24 AC 44 ms
33,292 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
No syntax errors detected in Main.php

ソースコード

diff #

<?php
$null = trim(fgets(STDIN));
$sheet = array_count_values(explode(' ', trim(fgets(STDIN))));
echo max(array_keys($sheet, max($sheet))).PHP_EOL;
0