結果

問題 No.21 平均の差
ユーザー takeya_okinotakeya_okino
提出日時 2017-06-11 21:41:58
言語 Java21
(openjdk 21)
結果
AC  
実行時間 121 ms / 5,000 ms
コード長 335 bytes
コンパイル時間 1,815 ms
コンパイル使用メモリ 74,500 KB
実行使用メモリ 54,404 KB
最終ジャッジ日時 2024-09-24 16:35:26
合計ジャッジ時間 3,540 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 107 ms
53,124 KB
testcase_01 AC 107 ms
52,992 KB
testcase_02 AC 118 ms
53,920 KB
testcase_03 AC 120 ms
54,396 KB
testcase_04 AC 113 ms
53,644 KB
testcase_05 AC 106 ms
53,092 KB
testcase_06 AC 121 ms
54,376 KB
testcase_07 AC 108 ms
52,980 KB
testcase_08 AC 119 ms
54,404 KB
testcase_09 AC 107 ms
53,056 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

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