結果

問題 No.21 平均の差
ユーザー eagleeagle
提出日時 2022-06-15 14:40:14
言語 Java21
(openjdk 21)
結果
AC  
実行時間 129 ms / 5,000 ms
コード長 506 bytes
コンパイル時間 2,084 ms
コンパイル使用メモリ 74,224 KB
実行使用メモリ 41,472 KB
最終ジャッジ日時 2024-10-04 04:23:50
合計ジャッジ時間 4,079 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 128 ms
41,084 KB
testcase_01 AC 128 ms
41,216 KB
testcase_02 AC 129 ms
40,896 KB
testcase_03 AC 128 ms
41,472 KB
testcase_04 AC 127 ms
41,216 KB
testcase_05 AC 127 ms
41,000 KB
testcase_06 AC 127 ms
41,264 KB
testcase_07 AC 128 ms
41,268 KB
testcase_08 AC 116 ms
40,264 KB
testcase_09 AC 117 ms
40,116 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {

	public static void main(String[] args) {
		// TODO 自動生成されたメソッド・スタブ
		Scanner sc = new Scanner(System.in);
		//数字の数
		int N = sc.nextInt();
		int K = sc.nextInt();
		//振り分けた際のグループの個数
		int[] num = new int[N];
		for(int i = 0; i < N; i++) {
			num[i] = sc.nextInt();
		}
		Arrays.sort(num);
		int min = num[0];
		int max = num[num.length - 1];
		int ans = max - min;
		System.out.println(ans);
	}
}
0