結果
問題 | No.21 平均の差 |
ユーザー | SagToki |
提出日時 | 2018-05-07 17:08:52 |
言語 | Java (openjdk 23) |
結果 |
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 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 10 |
ソースコード
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]); } }