結果

問題 No.21 平均の差
ユーザー ryosuke0825ryosuke0825
提出日時 2018-04-11 05:08:34
言語 Java21
(openjdk 21)
結果
AC  
実行時間 134 ms / 5,000 ms
コード長 437 bytes
コンパイル時間 3,548 ms
コンパイル使用メモリ 85,928 KB
実行使用メモリ 54,352 KB
最終ジャッジ日時 2024-06-26 21:11:01
合計ジャッジ時間 5,483 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 131 ms
54,032 KB
testcase_01 AC 130 ms
54,016 KB
testcase_02 AC 132 ms
54,084 KB
testcase_03 AC 130 ms
54,352 KB
testcase_04 AC 130 ms
54,096 KB
testcase_05 AC 131 ms
54,068 KB
testcase_06 AC 133 ms
54,208 KB
testcase_07 AC 131 ms
53,964 KB
testcase_08 AC 134 ms
54,256 KB
testcase_09 AC 131 ms
54,244 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.ArrayList;
import java.util.Collections;
import java.util.Scanner;

public class No21 {
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		int N = sc.nextInt();
		int K = sc.nextInt();

		ArrayList<Integer> list = new ArrayList<Integer>();
		for (int i = 0; i < N; i++) {
			list.add(sc.nextInt());
		}

		Collections.sort(list);
		System.out.println(list.get(N - 1) - list.get(0));
	}
}
0