結果

問題 No.21 平均の差
ユーザー shinwisteriashinwisteria
提出日時 2018-03-04 17:16:28
言語 Java21
(openjdk 21)
結果
AC  
実行時間 115 ms / 5,000 ms
コード長 365 bytes
コンパイル時間 3,323 ms
コンパイル使用メモリ 74,912 KB
実行使用メモリ 41,728 KB
最終ジャッジ日時 2024-07-08 05:56:12
合計ジャッジ時間 4,339 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 103 ms
41,728 KB
testcase_01 AC 115 ms
41,516 KB
testcase_02 AC 106 ms
41,328 KB
testcase_03 AC 108 ms
40,780 KB
testcase_04 AC 109 ms
40,352 KB
testcase_05 AC 111 ms
40,088 KB
testcase_06 AC 105 ms
41,548 KB
testcase_07 AC 108 ms
41,500 KB
testcase_08 AC 102 ms
41,396 KB
testcase_09 AC 109 ms
40,692 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

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

		Arrays.sort(n);
		System.out.println(n[N-1] - n[0]);

	}

}
0