結果
問題 | No.21 平均の差 |
ユーザー | Tsukasa_Type |
提出日時 | 2018-02-09 01:33:54 |
言語 | Java (openjdk 23) |
結果 |
AC
|
実行時間 | 131 ms / 5,000 ms |
コード長 | 391 bytes |
コンパイル時間 | 2,234 ms |
コンパイル使用メモリ | 75,744 KB |
実行使用メモリ | 54,360 KB |
最終ジャッジ日時 | 2024-10-01 21:13:36 |
合計ジャッジ時間 | 3,933 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 10 |
ソースコード
import java.util.*; public class Main { static Scanner sc = new Scanner(System.in); public static void main(String[] args) { int n = sc.nextInt(); int k = sc.nextInt(); int min = Integer.MAX_VALUE; int max = Integer.MIN_VALUE; for (int i=0; i<n; i++) { int temp = sc.nextInt(); min = Math.min(min,temp); max = Math.max(max,temp); } System.out.println(max-min); } }