結果

問題 No.21 平均の差
ユーザー SuunnSuunn
提出日時 2018-11-20 04:55:56
言語 Java21
(openjdk 21)
結果
AC  
実行時間 141 ms / 5,000 ms
コード長 377 bytes
コンパイル時間 2,014 ms
コンパイル使用メモリ 74,432 KB
実行使用メモリ 41,520 KB
最終ジャッジ日時 2024-06-06 21:04:08
合計ジャッジ時間 4,318 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 110 ms
40,032 KB
testcase_01 AC 118 ms
41,040 KB
testcase_02 AC 120 ms
40,924 KB
testcase_03 AC 123 ms
41,200 KB
testcase_04 AC 111 ms
39,756 KB
testcase_05 AC 109 ms
39,600 KB
testcase_06 AC 137 ms
40,788 KB
testcase_07 AC 136 ms
41,128 KB
testcase_08 AC 141 ms
41,288 KB
testcase_09 AC 139 ms
41,520 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;
	

public class Main{
	
	
	public static void main(String args[])throws Exception{
		
		Scanner sc = new Scanner(System.in);
		int N = sc.nextInt();
		int K = sc.nextInt();
		int max = 0;
		int min = 1001;
		for(int i=0;i<N;i++){
			int n = sc.nextInt();
			max = Math.max(max, n);
			min = Math.min(min, n);
		}
		System.out.println(max-min);
	}
	
}
0