結果

問題 No.79 過小評価ダメ・ゼッタイ
ユーザー kou6839kou6839
提出日時 2014-11-30 20:11:34
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 471 bytes
コンパイル時間 2,196 ms
コンパイル使用メモリ 74,744 KB
実行使用メモリ 48,080 KB
最終ジャッジ日時 2024-06-11 07:26:43
合計ジャッジ時間 9,867 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 190 ms
45,664 KB
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 AC 115 ms
41,156 KB
testcase_05 WA -
testcase_06 WA -
testcase_07 AC 110 ms
40,952 KB
testcase_08 AC 115 ms
41,404 KB
testcase_09 AC 112 ms
41,276 KB
testcase_10 AC 119 ms
41,016 KB
testcase_11 WA -
testcase_12 AC 121 ms
41,276 KB
testcase_13 AC 125 ms
41,112 KB
testcase_14 AC 402 ms
47,712 KB
testcase_15 AC 278 ms
47,336 KB
testcase_16 AC 428 ms
47,760 KB
testcase_17 WA -
testcase_18 WA -
testcase_19 AC 406 ms
47,820 KB
testcase_20 AC 460 ms
47,972 KB
testcase_21 AC 178 ms
43,760 KB
testcase_22 AC 332 ms
47,812 KB
testcase_23 WA -
testcase_24 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.math.BigInteger;
import java.util.*;
 
public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        int n = sc.nextInt();
        int[] ans= new int[7];
        for(int i=0;i<n;i++){
        	int t= sc.nextInt();
        	ans[t]++;
        }
        int anss=0;
        for(int i=0;i<=5;i++){
        	if(ans[i]<=ans[i+1]) anss=i+1;
        }
        System.out.println(anss);
    }
}
0