結果

問題 No.79 過小評価ダメ・ゼッタイ
ユーザー togaerrortogaerror
提出日時 2015-04-18 02:07:27
言語 Perl
(5.38.2)
結果
WA  
実行時間 -
コード長 377 bytes
コンパイル時間 95 ms
コンパイル使用メモリ 6,944 KB
実行使用メモリ 19,968 KB
最終ジャッジ日時 2024-07-04 16:08:43
合計ジャッジ時間 1,466 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 8 ms
6,272 KB
testcase_01 AC 55 ms
19,712 KB
testcase_02 AC 6 ms
5,760 KB
testcase_03 AC 6 ms
5,760 KB
testcase_04 AC 6 ms
5,632 KB
testcase_05 AC 57 ms
19,968 KB
testcase_06 AC 6 ms
5,760 KB
testcase_07 WA -
testcase_08 AC 6 ms
5,632 KB
testcase_09 AC 6 ms
5,760 KB
testcase_10 AC 6 ms
5,760 KB
testcase_11 AC 6 ms
5,632 KB
testcase_12 WA -
testcase_13 WA -
testcase_14 AC 34 ms
14,080 KB
testcase_15 AC 18 ms
9,088 KB
testcase_16 AC 43 ms
16,640 KB
testcase_17 AC 17 ms
8,960 KB
testcase_18 AC 41 ms
16,256 KB
testcase_19 AC 31 ms
13,312 KB
testcase_20 AC 58 ms
19,968 KB
testcase_21 AC 6 ms
6,016 KB
testcase_22 AC 23 ms
10,624 KB
testcase_23 AC 51 ms
19,072 KB
testcase_24 AC 51 ms
19,328 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.pl syntax OK

ソースコード

diff #

#!/usr/bin/perl

use strict;
use warnings;

my $n = <>;
my $l = <>;
chomp $l;
my @array = split / /, $l;
my @count;
for(my $i = 0; $i < $n + 1; $i++) {
	$count[$i] = 0;
}
for(my $i = 0; $i < $n; $i++) {
	$count[$array[$i]]++; 
}

my $keep = 0;
my $j = 0;
for(my $i = 0; $i < $n + 1; $i++) {
	if($keep <= $count[$i]) {
		$j = $i;
		$keep = $count[$i];
	}
}

print "$j\n";

exit;
0