結果

問題 No.79 過小評価ダメ・ゼッタイ
ユーザー リチウムリチウム
提出日時 2014-11-27 23:24:21
言語 Java21
(openjdk 21)
結果
AC  
実行時間 563 ms / 5,000 ms
コード長 509 bytes
コンパイル時間 3,085 ms
コンパイル使用メモリ 74,316 KB
実行使用メモリ 49,028 KB
最終ジャッジ日時 2024-06-26 07:13:45
合計ジャッジ時間 10,943 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 224 ms
46,384 KB
testcase_01 AC 563 ms
48,976 KB
testcase_02 AC 142 ms
41,996 KB
testcase_03 AC 142 ms
41,716 KB
testcase_04 AC 147 ms
42,008 KB
testcase_05 AC 550 ms
48,664 KB
testcase_06 AC 143 ms
42,112 KB
testcase_07 AC 145 ms
41,900 KB
testcase_08 AC 133 ms
41,116 KB
testcase_09 AC 142 ms
41,640 KB
testcase_10 AC 141 ms
41,756 KB
testcase_11 AC 142 ms
41,776 KB
testcase_12 AC 139 ms
41,808 KB
testcase_13 AC 148 ms
41,724 KB
testcase_14 AC 469 ms
48,668 KB
testcase_15 AC 331 ms
48,316 KB
testcase_16 AC 487 ms
48,852 KB
testcase_17 AC 286 ms
48,236 KB
testcase_18 AC 498 ms
48,672 KB
testcase_19 AC 445 ms
48,456 KB
testcase_20 AC 556 ms
48,848 KB
testcase_21 AC 215 ms
44,040 KB
testcase_22 AC 357 ms
48,476 KB
testcase_23 AC 548 ms
48,728 KB
testcase_24 AC 550 ms
49,028 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import static java.lang.Math.*;

public class Main {
	
	
  public static void main(String[] args) {
	  Scanner sc=new Scanner(System.in);
	  int n=sc.nextInt();
	  int l[]=new int[n];
	  int a[]=new int[200000];
	  for(int i=0;i<n;i++){
		  a[sc.nextInt()]++;
	  }
	  int max=0;
	  for(int i=0;i<200000;i++){
		  max=Math.max(max,a[i]);
	  }
	  int ans=0;
	  for(int i=200000-1;i>=0;i--){
		  if(a[i]==max){
			  System.out.println(i);
			  return;
		  }
	  }
  }}
0