結果

問題 No.21 平均の差
ユーザー papipenpapipen
提出日時 2017-03-28 23:19:52
言語 Java21
(openjdk 21)
結果
AC  
実行時間 104 ms / 5,000 ms
コード長 374 bytes
コンパイル時間 2,500 ms
コンパイル使用メモリ 74,280 KB
実行使用メモリ 41,304 KB
最終ジャッジ日時 2024-07-06 13:32:26
合計ジャッジ時間 3,247 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 91 ms
39,888 KB
testcase_01 AC 103 ms
41,200 KB
testcase_02 AC 94 ms
40,168 KB
testcase_03 AC 87 ms
39,892 KB
testcase_04 AC 100 ms
41,160 KB
testcase_05 AC 103 ms
41,040 KB
testcase_06 AC 104 ms
41,132 KB
testcase_07 AC 102 ms
41,296 KB
testcase_08 AC 103 ms
41,304 KB
testcase_09 AC 104 ms
40,888 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;
class N021{
	public static void main(String args[]){
		Scanner s = new Scanner(System.in);
		int n = s.nextInt();
		int k = s.nextInt();
		int max = 0;
		int min = 1000;
		int a[] = new int[n];
		for(int i = 0; i < n; i++){
			a[i] = s.nextInt();
			max = Math.max(max, a[i]);
			min = Math.min(min, a[i]);
		}
		System.out.println(max - min);
	}
}
0