結果

問題 No.21 平均の差
ユーザー SagTokiSagToki
提出日時 2018-05-07 17:08:52
言語 Java21
(openjdk 21)
結果
AC  
実行時間 133 ms / 5,000 ms
コード長 443 bytes
コンパイル時間 3,428 ms
コンパイル使用メモリ 75,140 KB
実行使用メモリ 41,596 KB
最終ジャッジ日時 2024-06-28 02:17:31
合計ジャッジ時間 5,405 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 130 ms
41,292 KB
testcase_01 AC 132 ms
41,596 KB
testcase_02 AC 133 ms
41,200 KB
testcase_03 AC 129 ms
41,184 KB
testcase_04 AC 132 ms
41,580 KB
testcase_05 AC 129 ms
41,496 KB
testcase_06 AC 130 ms
41,416 KB
testcase_07 AC 132 ms
41,200 KB
testcase_08 AC 131 ms
41,280 KB
testcase_09 AC 131 ms
41,324 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class AverageDifference {
    public static void main(String[] args){
        Scanner scanner = new Scanner(System.in);
        int N = scanner.nextInt();
        int K = scanner.nextInt();
        int[] num = new int[N];
        for(int i = 0 ; i < N ; i++){
            num[i] = scanner.nextInt();
        }
        
        Arrays.sort(num);
        
        System.out.print(num[N-1] - num[0]);
 
    }
    
}
0