結果

問題 No.21 平均の差
ユーザー mustonmuston
提出日時 2016-05-10 11:21:59
言語 Java21
(openjdk 21)
結果
AC  
実行時間 125 ms / 5,000 ms
コード長 349 bytes
コンパイル時間 2,141 ms
コンパイル使用メモリ 74,272 KB
実行使用メモリ 54,404 KB
最終ジャッジ日時 2024-10-05 13:27:17
合計ジャッジ時間 4,082 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 125 ms
54,404 KB
testcase_01 AC 110 ms
53,192 KB
testcase_02 AC 121 ms
54,304 KB
testcase_03 AC 119 ms
54,056 KB
testcase_04 AC 122 ms
53,872 KB
testcase_05 AC 108 ms
53,852 KB
testcase_06 AC 120 ms
53,948 KB
testcase_07 AC 106 ms
52,928 KB
testcase_08 AC 115 ms
54,124 KB
testcase_09 AC 105 ms
53,112 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import java.io.*;
class Aaf {
  public static void main(String[] args){
    Scanner scan = new Scanner(System.in);
    int N = scan.nextInt();
    int K = scan.nextInt();
    int [] n = new int [N];
    for(int i=0; i<N; i++) n[i] = scan.nextInt();
    Arrays.sort(n);
    int c = n[N-1] - n[0];
    System.out.println(c);
  }
}
0