結果

問題 No.79 過小評価ダメ・ゼッタイ
ユーザー shinwisteriashinwisteria
提出日時 2018-03-04 14:30:17
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 390 bytes
コンパイル時間 3,354 ms
コンパイル使用メモリ 74,264 KB
実行使用メモリ 61,220 KB
最終ジャッジ日時 2024-07-07 16:54:58
合計ジャッジ時間 10,415 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 180 ms
45,396 KB
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 AC 112 ms
41,448 KB
testcase_05 WA -
testcase_06 WA -
testcase_07 AC 111 ms
41,012 KB
testcase_08 AC 100 ms
41,488 KB
testcase_09 AC 101 ms
41,784 KB
testcase_10 AC 100 ms
41,456 KB
testcase_11 WA -
testcase_12 AC 106 ms
40,504 KB
testcase_13 AC 107 ms
40,404 KB
testcase_14 AC 402 ms
47,880 KB
testcase_15 AC 264 ms
47,704 KB
testcase_16 AC 378 ms
48,252 KB
testcase_17 WA -
testcase_18 WA -
testcase_19 AC 356 ms
47,788 KB
testcase_20 AC 432 ms
48,052 KB
testcase_21 AC 172 ms
43,412 KB
testcase_22 AC 304 ms
47,740 KB
testcase_23 WA -
testcase_24 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

package m.shin;
import java.util.Scanner;
public class Con79 {

	public static void main(String[] args) {
		Scanner s = new Scanner(System.in);
		int N = s.nextInt();
		int[] l = new int[6];
		for(int i = 0;i < N;i++){
			l[s.nextInt()-1]++;
		}
		s.close();

		int Level = 1;
		for(int i = 1;i < 6;i++){
			if(l[i] >= l[i-1]){
				Level = i+1;
			}
		}
		System.out.println(Level);

	}

}
0