結果

問題 No.21 平均の差
ユーザー koukonkokoukonko
提出日時 2015-12-07 12:26:16
言語 Java
(openjdk 23)
結果
AC  
実行時間 58 ms / 5,000 ms
コード長 796 bytes
コンパイル時間 2,476 ms
コンパイル使用メモリ 74,608 KB
実行使用メモリ 50,292 KB
最終ジャッジ日時 2024-09-14 18:17:53
合計ジャッジ時間 3,207 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 10
権限があれば一括ダウンロードができます

ソースコード

diff #

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

public class Main {
	public static void main(String[] args) {
		BufferedReader buff = new BufferedReader(new InputStreamReader(System.in));

		try{
			int N = Integer.parseInt(buff.readLine());
			int K = Integer.parseInt(buff.readLine());
			int[] box = new int[N];
			for(int i = 0; i < N; ++i){
				box[i] = Integer.parseInt(buff.readLine());
				for(int j = 0; j < i; ++j){
					if(box[i] < box[j]){
						int w = box[i];
						box[i] = box[j];
						box[j] = w;
					}
				}
			}

			int posiMin = 0, posiMax = N -1;
			int max = box[posiMax], min = box[posiMin];

			int ans =  max - min;
			System.out.println(ans);


		} catch (NumberFormatException e) {

		} catch (IOException e) {

		}
	}
}
0