結果

問題 No.21 平均の差
ユーザー TwinkleStar74TwinkleStar74
提出日時 2017-10-29 01:38:57
言語 Java21
(openjdk 21)
結果
AC  
実行時間 52 ms / 5,000 ms
コード長 508 bytes
コンパイル時間 3,854 ms
コンパイル使用メモリ 74,516 KB
実行使用メモリ 37,196 KB
最終ジャッジ日時 2024-11-22 04:32:11
合計ジャッジ時間 4,718 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 49 ms
36,884 KB
testcase_01 AC 50 ms
37,000 KB
testcase_02 AC 50 ms
37,172 KB
testcase_03 AC 49 ms
36,920 KB
testcase_04 AC 50 ms
36,880 KB
testcase_05 AC 48 ms
36,860 KB
testcase_06 AC 51 ms
36,632 KB
testcase_07 AC 52 ms
37,076 KB
testcase_08 AC 51 ms
37,196 KB
testcase_09 AC 49 ms
36,720 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

public class No21{
	public static void main(String[] args) throws IOException{
		BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
		int n = Integer.parseInt(br.readLine());
		String k = br.readLine();
		int[] num = new int[n];
		for(int i=0; i < n; i++)
			num[i] = Integer.parseInt(br.readLine());
		Arrays.sort(num);
		System.out.println(num[n-1] - num[0]);
	}
}
0