結果

問題 No.21 平均の差
ユーザー Tsukasa_TypeTsukasa_Type
提出日時 2018-02-09 01:33:54
言語 Java21
(openjdk 21)
結果
AC  
実行時間 131 ms / 5,000 ms
コード長 391 bytes
コンパイル時間 2,234 ms
コンパイル使用メモリ 75,744 KB
実行使用メモリ 54,360 KB
最終ジャッジ日時 2024-10-01 21:13:36
合計ジャッジ時間 3,933 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 128 ms
54,208 KB
testcase_01 AC 128 ms
54,004 KB
testcase_02 AC 130 ms
54,348 KB
testcase_03 AC 129 ms
54,088 KB
testcase_04 AC 131 ms
54,176 KB
testcase_05 AC 116 ms
52,964 KB
testcase_06 AC 123 ms
54,012 KB
testcase_07 AC 128 ms
54,124 KB
testcase_08 AC 123 ms
54,360 KB
testcase_09 AC 126 ms
53,956 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
	static Scanner sc = new Scanner(System.in);
	public static void main(String[] args) {
		int n = sc.nextInt();
		int k = sc.nextInt();
		int min = Integer.MAX_VALUE;
		int max = Integer.MIN_VALUE;
		for (int i=0; i<n; i++) {
			int temp = sc.nextInt();
			min = Math.min(min,temp);
			max = Math.max(max,temp);
		}
		System.out.println(max-min);
	}
}
0