結果

問題 No.21 平均の差
ユーザー kuramukuramu
提出日時 2016-01-20 09:41:08
言語 Java21
(openjdk 21)
結果
AC  
実行時間 55 ms / 5,000 ms
コード長 667 bytes
コンパイル時間 4,391 ms
コンパイル使用メモリ 74,872 KB
実行使用メモリ 53,684 KB
最終ジャッジ日時 2023-10-21 13:28:28
合計ジャッジ時間 3,582 ms
ジャッジサーバーID
(参考情報)
judge9 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 53 ms
53,684 KB
testcase_01 AC 52 ms
51,628 KB
testcase_02 AC 54 ms
53,680 KB
testcase_03 AC 55 ms
53,664 KB
testcase_04 AC 53 ms
53,672 KB
testcase_05 AC 53 ms
53,684 KB
testcase_06 AC 54 ms
53,668 KB
testcase_07 AC 53 ms
53,672 KB
testcase_08 AC 54 ms
53,668 KB
testcase_09 AC 54 ms
53,668 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.util.Arrays;

public class Main {

	public static void main(String[] args) {
	      BufferedReader stdReader =new BufferedReader(new InputStreamReader(System.in));
	      try {
	    	  int N = Integer.parseInt(stdReader.readLine());
	    	  int K = Integer.parseInt(stdReader.readLine());
	    	  int[] num = new int[N];
	    	  for(int i=0;i<N;i++){
	    		  num[i] = Integer.parseInt(stdReader.readLine());
	    	  }
	    	  Arrays.sort(num);
	    	  System.out.println(num[N-1]-num[0]);
	    	  } catch (IOException e) {
			e.printStackTrace();
	      }
	}
}
0