結果

問題 No.21 平均の差
ユーザー ohagi_1182ohagi_1182
提出日時 2017-10-21 16:00:32
言語 Java21
(openjdk 21)
結果
AC  
実行時間 154 ms / 5,000 ms
コード長 391 bytes
コンパイル時間 2,392 ms
コンパイル使用メモリ 78,048 KB
実行使用メモリ 41,476 KB
最終ジャッジ日時 2024-11-21 12:31:37
合計ジャッジ時間 4,459 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 139 ms
41,476 KB
testcase_01 AC 139 ms
41,408 KB
testcase_02 AC 136 ms
41,108 KB
testcase_03 AC 134 ms
41,300 KB
testcase_04 AC 139 ms
41,068 KB
testcase_05 AC 138 ms
41,408 KB
testcase_06 AC 142 ms
41,296 KB
testcase_07 AC 139 ms
41,304 KB
testcase_08 AC 138 ms
40,936 KB
testcase_09 AC 154 ms
40,936 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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 max = -1001001001;
		int min = 1001001001;
		for(int i = 0 ; i < n ; i++) {
			int data = sc.nextInt();
			max = Math.max(max, data);
			min = Math.min(min, data);
		}
		System.out.println(max - min);
 	}
}

0