結果

問題 No.21 平均の差
ユーザー suiginginsuigingin
提出日時 2015-07-07 01:51:12
言語 Java21
(openjdk 21)
結果
AC  
実行時間 119 ms / 5,000 ms
コード長 411 bytes
コンパイル時間 2,878 ms
コンパイル使用メモリ 75,224 KB
実行使用メモリ 41,612 KB
最終ジャッジ日時 2024-07-08 01:25:36
合計ジャッジ時間 4,594 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 110 ms
41,484 KB
testcase_01 AC 100 ms
40,340 KB
testcase_02 AC 107 ms
41,132 KB
testcase_03 AC 99 ms
40,252 KB
testcase_04 AC 111 ms
41,216 KB
testcase_05 AC 110 ms
41,012 KB
testcase_06 AC 114 ms
41,076 KB
testcase_07 AC 118 ms
41,056 KB
testcase_08 AC 119 ms
41,488 KB
testcase_09 AC 111 ms
41,612 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

public class No_021 {
	Scanner sc = new Scanner(System.in);

	void run() {
		int N = sc.nextInt();
		int K = sc.nextInt();
		int[] n = new int[N];
		for (int i = 0; i < N; i++) n[i] = sc.nextInt();
		Arrays.sort(n);
		int max = n[N-1];
		int min = n[0];
		System.out.println(max - min);
	}

	public static void main(String[] args) {
		new No_021().run();
	}
}
0