結果

問題 No.21 平均の差
ユーザー kuramukuramu
提出日時 2016-01-20 09:41:08
言語 Java21
(openjdk 21)
結果
AC  
実行時間 54 ms / 5,000 ms
コード長 667 bytes
コンパイル時間 2,102 ms
コンパイル使用メモリ 74,240 KB
実行使用メモリ 37,200 KB
最終ジャッジ日時 2024-09-21 14:43:22
合計ジャッジ時間 3,337 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 53 ms
37,184 KB
testcase_01 AC 53 ms
36,976 KB
testcase_02 AC 52 ms
37,200 KB
testcase_03 AC 54 ms
37,008 KB
testcase_04 AC 52 ms
37,008 KB
testcase_05 AC 51 ms
37,108 KB
testcase_06 AC 53 ms
37,152 KB
testcase_07 AC 53 ms
36,828 KB
testcase_08 AC 54 ms
37,072 KB
testcase_09 AC 54 ms
36,908 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