結果

問題 No.21 平均の差
ユーザー 37zigen37zigen
提出日時 2016-04-01 17:54:29
言語 Java21
(openjdk 21)
結果
AC  
実行時間 140 ms / 5,000 ms
コード長 346 bytes
コンパイル時間 2,181 ms
コンパイル使用メモリ 74,096 KB
実行使用メモリ 41,600 KB
最終ジャッジ日時 2024-10-02 08:50:02
合計ジャッジ時間 4,253 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 132 ms
41,272 KB
testcase_01 AC 119 ms
40,044 KB
testcase_02 AC 136 ms
41,312 KB
testcase_03 AC 140 ms
41,296 KB
testcase_04 AC 139 ms
41,164 KB
testcase_05 AC 137 ms
41,252 KB
testcase_06 AC 138 ms
41,600 KB
testcase_07 AC 137 ms
41,560 KB
testcase_08 AC 138 ms
41,216 KB
testcase_09 AC 138 ms
41,332 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package yukicoder021;
import java.util.Arrays;
import java.util.Scanner;
public class Main {
	public static void main(String[] args){
		Scanner sc=new Scanner(System.in);
		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);
		System.out.println(N[n-1]-N[0]);

	}
}
0