結果

問題 No.21 平均の差
ユーザー spaciaspacia
提出日時 2015-12-16 10:28:09
言語 Java21
(openjdk 21)
結果
AC  
実行時間 51 ms / 5,000 ms
コード長 549 bytes
コンパイル時間 1,929 ms
コンパイル使用メモリ 74,684 KB
実行使用メモリ 50,284 KB
最終ジャッジ日時 2024-09-16 05:39:38
合計ジャッジ時間 3,017 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 51 ms
49,780 KB
testcase_01 AC 50 ms
49,936 KB
testcase_02 AC 50 ms
49,916 KB
testcase_03 AC 49 ms
50,284 KB
testcase_04 AC 49 ms
49,952 KB
testcase_05 AC 50 ms
50,196 KB
testcase_06 AC 49 ms
50,160 KB
testcase_07 AC 49 ms
49,840 KB
testcase_08 AC 51 ms
50,228 KB
testcase_09 AC 49 ms
50,192 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;
import java.util.*;
import java.math.*;

class Main21 {
	
	public static void main (String[] args) throws IOException {
		BufferedReader br = 
			new BufferedReader(new InputStreamReader(System.in));
		
		int n = Integer.parseInt(br.readLine());
		int k = Integer.parseInt(br.readLine());
		int[] nums = new int[n];
		int max = 0, min = 1001;
		for (int i = 0; i < n; i++) {
			nums[i] = Integer.parseInt(br.readLine());
			max = Math.max(max, nums[i]);
			min = Math.min(min, nums[i]);
		}
		
		System.out.println(max - min);
	}
}
0