結果

問題 No.79 過小評価ダメ・ゼッタイ
ユーザー カニ戯(ryカニ戯(ry
提出日時 2015-02-25 14:46:39
言語 Java21
(openjdk 21)
結果
AC  
実行時間 594 ms / 5,000 ms
コード長 283 bytes
コンパイル時間 2,389 ms
コンパイル使用メモリ 73,968 KB
実行使用メモリ 49,108 KB
最終ジャッジ日時 2024-06-26 07:29:50
合計ジャッジ時間 11,384 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 221 ms
45,796 KB
testcase_01 AC 590 ms
48,920 KB
testcase_02 AC 138 ms
41,340 KB
testcase_03 AC 135 ms
40,904 KB
testcase_04 AC 137 ms
41,232 KB
testcase_05 AC 594 ms
48,996 KB
testcase_06 AC 136 ms
40,912 KB
testcase_07 AC 142 ms
41,368 KB
testcase_08 AC 141 ms
41,116 KB
testcase_09 AC 140 ms
41,084 KB
testcase_10 AC 138 ms
40,852 KB
testcase_11 AC 136 ms
41,088 KB
testcase_12 AC 141 ms
41,016 KB
testcase_13 AC 135 ms
40,908 KB
testcase_14 AC 481 ms
47,528 KB
testcase_15 AC 322 ms
47,408 KB
testcase_16 AC 537 ms
47,812 KB
testcase_17 AC 308 ms
47,440 KB
testcase_18 AC 518 ms
47,500 KB
testcase_19 AC 455 ms
47,556 KB
testcase_20 AC 583 ms
49,108 KB
testcase_21 AC 209 ms
43,940 KB
testcase_22 AC 373 ms
47,404 KB
testcase_23 AC 581 ms
48,400 KB
testcase_24 AC 573 ms
49,092 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Arrays;
import java.util.Scanner;


public class Main {
	public static void main(String[] a) {
		Scanner s=new Scanner(System.in);
		s.nextInt();
		int[] L={0,1,2,3,4,5,6};
		while(s.hasNext())L[s.nextInt()]+=10;
		Arrays.sort(L);
		System.out.println(L[6]%10);
	}
}
0