結果

問題 No.21 平均の差
ユーザー mits58mits58
提出日時 2016-07-09 16:57:03
言語 Java21
(openjdk 21)
結果
AC  
実行時間 137 ms / 5,000 ms
コード長 341 bytes
コンパイル時間 4,903 ms
コンパイル使用メモリ 74,116 KB
実行使用メモリ 53,984 KB
最終ジャッジ日時 2024-10-13 09:35:36
合計ジャッジ時間 6,991 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 131 ms
53,896 KB
testcase_01 AC 134 ms
53,984 KB
testcase_02 AC 134 ms
53,892 KB
testcase_03 AC 133 ms
53,976 KB
testcase_04 AC 134 ms
53,824 KB
testcase_05 AC 132 ms
53,752 KB
testcase_06 AC 136 ms
53,904 KB
testcase_07 AC 132 ms
53,616 KB
testcase_08 AC 137 ms
53,788 KB
testcase_09 AC 133 ms
53,968 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

class Main{
	public static void main(String[] args) {
		Scanner sc=new Scanner(System.in);
		while(sc.hasNext()){
			int n=sc.nextInt();
			int k=sc.nextInt();
			int[] a=new int[n];
			for(int i=0;i<n;i++) a[i]=sc.nextInt();
			Arrays.sort(a);
			System.out.println(a[n-1]-a[0]);
		}
	}
}
0