結果

問題 No.21 平均の差
ユーザー sasakkisasakki
提出日時 2016-03-12 17:03:49
言語 Java21
(openjdk 21)
結果
AC  
実行時間 131 ms / 5,000 ms
コード長 388 bytes
コンパイル時間 1,974 ms
コンパイル使用メモリ 74,768 KB
実行使用メモリ 54,344 KB
最終ジャッジ日時 2024-09-25 03:20:42
合計ジャッジ時間 3,885 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 126 ms
54,344 KB
testcase_01 AC 125 ms
53,984 KB
testcase_02 AC 129 ms
53,980 KB
testcase_03 AC 128 ms
53,868 KB
testcase_04 AC 128 ms
53,940 KB
testcase_05 AC 130 ms
54,332 KB
testcase_06 AC 123 ms
54,004 KB
testcase_07 AC 128 ms
54,024 KB
testcase_08 AC 131 ms
54,112 KB
testcase_09 AC 128 ms
54,176 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

class main{
    public static void main(String args[]){
	Scanner scan = new Scanner(System.in);

	int N = scan.nextInt();
	int K = scan.nextInt();

	int max = 0;
	int min = 1000;

	for(int i = 0; i < N; i++){
	    int num = scan.nextInt();

	    max = Math.max(max, num);
	    min = Math.min(min, num);
	    
	}

	System.out.printf("%d\n", max - min);

    }
}
0