結果

問題 No.21 平均の差
ユーザー soujikisoujiki
提出日時 2015-04-24 19:39:47
言語 Java21
(openjdk 21)
結果
AC  
実行時間 130 ms / 5,000 ms
コード長 333 bytes
コンパイル時間 3,391 ms
コンパイル使用メモリ 74,512 KB
実行使用メモリ 41,576 KB
最終ジャッジ日時 2024-07-05 01:06:45
合計ジャッジ時間 5,187 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 130 ms
41,416 KB
testcase_01 AC 128 ms
41,520 KB
testcase_02 AC 125 ms
41,456 KB
testcase_03 AC 124 ms
41,372 KB
testcase_04 AC 127 ms
41,560 KB
testcase_05 AC 128 ms
41,576 KB
testcase_06 AC 124 ms
41,232 KB
testcase_07 AC 118 ms
41,544 KB
testcase_08 AC 125 ms
41,264 KB
testcase_09 AC 125 ms
41,260 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Yukicoder_21{
	public static void main(String[] args){
		Scanner stdIn = new Scanner(System.in);
		int N = stdIn.nextInt();
		int K = stdIn.nextInt();
		int[] num = new int[N];
		for(int i=0;i<N;i++){
			num[i] = stdIn.nextInt();
		}
		Arrays.sort(num);
		System.out.println(num[N-1] - num[0]);
	}
}
0