結果

問題 No.21 平均の差
ユーザー kou6839kou6839
提出日時 2014-11-16 15:46:56
言語 Java21
(openjdk 21)
結果
AC  
実行時間 128 ms / 5,000 ms
コード長 378 bytes
コンパイル時間 1,784 ms
コンパイル使用メモリ 74,272 KB
実行使用メモリ 41,672 KB
最終ジャッジ日時 2024-06-10 07:36:32
合計ジャッジ時間 3,538 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 101 ms
40,028 KB
testcase_01 AC 97 ms
40,388 KB
testcase_02 AC 111 ms
41,380 KB
testcase_03 AC 120 ms
41,392 KB
testcase_04 AC 114 ms
41,324 KB
testcase_05 AC 114 ms
41,528 KB
testcase_06 AC 116 ms
41,672 KB
testcase_07 AC 119 ms
41,492 KB
testcase_08 AC 118 ms
41,428 KB
testcase_09 AC 128 ms
41,524 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
 

public class Main {

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