結果

問題 No.21 平均の差
ユーザー jimanojimano
提出日時 2016-01-11 11:23:01
言語 Java21
(openjdk 21)
結果
AC  
実行時間 57 ms / 5,000 ms
コード長 655 bytes
コンパイル時間 3,593 ms
コンパイル使用メモリ 75,172 KB
実行使用メモリ 53,696 KB
最終ジャッジ日時 2023-10-19 22:47:22
合計ジャッジ時間 4,814 ms
ジャッジサーバーID
(参考情報)
judge14 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

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

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