結果

問題 No.21 平均の差
ユーザー pao2pao2pao2pao2
提出日時 2022-07-30 08:14:26
言語 Java21
(openjdk 21)
結果
AC  
実行時間 135 ms / 5,000 ms
コード長 413 bytes
コンパイル時間 2,233 ms
コンパイル使用メモリ 76,580 KB
実行使用メモリ 41,496 KB
最終ジャッジ日時 2024-07-20 03:18:33
合計ジャッジ時間 4,130 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 121 ms
40,860 KB
testcase_01 AC 125 ms
41,020 KB
testcase_02 AC 123 ms
41,312 KB
testcase_03 AC 117 ms
41,496 KB
testcase_04 AC 122 ms
41,024 KB
testcase_05 AC 125 ms
41,008 KB
testcase_06 AC 122 ms
41,284 KB
testcase_07 AC 123 ms
41,016 KB
testcase_08 AC 135 ms
41,404 KB
testcase_09 AC 118 ms
41,288 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Arrays;
import java.util.Scanner;

public class Main {
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);

		int N = sc.nextInt();
		int K = sc.nextInt();
		int[] n = new int[N];
		Arrays.setAll(n, i -> sc.nextInt());
		int min = Arrays.stream(n).min().getAsInt();
		int max = Arrays.stream(n).max().getAsInt();

		System.out.println(max - min);

		sc.close();
	}
}
0