結果

問題 No.79 過小評価ダメ・ゼッタイ
ユーザー FVRChanFVRChan
提出日時 2017-09-24 15:22:51
言語 Java21
(openjdk 21)
結果
AC  
実行時間 593 ms / 5,000 ms
コード長 933 bytes
コンパイル時間 3,281 ms
コンパイル使用メモリ 82,612 KB
実行使用メモリ 48,584 KB
最終ジャッジ日時 2024-06-26 08:18:51
合計ジャッジ時間 11,846 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 219 ms
45,452 KB
testcase_01 AC 593 ms
48,320 KB
testcase_02 AC 131 ms
41,484 KB
testcase_03 AC 133 ms
41,384 KB
testcase_04 AC 134 ms
41,388 KB
testcase_05 AC 574 ms
48,584 KB
testcase_06 AC 119 ms
40,040 KB
testcase_07 AC 130 ms
41,060 KB
testcase_08 AC 131 ms
41,376 KB
testcase_09 AC 118 ms
40,060 KB
testcase_10 AC 130 ms
41,288 KB
testcase_11 AC 132 ms
41,096 KB
testcase_12 AC 131 ms
41,272 KB
testcase_13 AC 133 ms
41,348 KB
testcase_14 AC 456 ms
48,204 KB
testcase_15 AC 303 ms
47,728 KB
testcase_16 AC 551 ms
48,324 KB
testcase_17 AC 299 ms
47,608 KB
testcase_18 AC 486 ms
48,268 KB
testcase_19 AC 468 ms
48,260 KB
testcase_20 AC 578 ms
48,376 KB
testcase_21 AC 204 ms
43,404 KB
testcase_22 AC 371 ms
48,200 KB
testcase_23 AC 549 ms
48,424 KB
testcase_24 AC 563 ms
48,564 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Collections;
import java.util.Comparator;
import java.util.HashMap;
import java.util.LinkedList;
import java.util.Scanner;
public class Main{
	public static void main(String args[])throws Exception{
		Scanner sc=new Scanner(System.in);
		HashMap<Integer,A>map=new HashMap<Integer,A>();
		int n=Integer.parseInt(sc.nextLine());
		for(int i=0;i<n;i++){
			int m=sc.nextInt();
			if(map.containsKey(m)==false){
				map.put(m,new A(m));
			}else{
				map.get(m).num++;
			}
		}
		LinkedList<A>queue=new LinkedList<A>(map.values());
		Collections.sort(queue,new Comparator<A>(){
			public int compare(A a1,A a2){
				if(a1.num != a2.num)
					return a1.num-a2.num;
				else
					return a1.value-a2.value;
			}
		});
		System.out.println(queue.getLast().value);
	}
}
class A{
	int num;
	int value;
	public A(int value){
		this.value=value;
		this.num=1;
	}
	public String toString(){
		return this.value+":"+this.num;
	}
}
0