結果
問題 | No.21 平均の差 |
ユーザー | uafr_cs |
提出日時 | 2015-05-10 16:59:07 |
言語 | Java21 (openjdk 21) |
結果 |
AC
|
実行時間 | 116 ms / 5,000 ms |
コード長 | 517 bytes |
コンパイル時間 | 2,019 ms |
コンパイル使用メモリ | 73,840 KB |
実行使用メモリ | 40,932 KB |
最終ジャッジ日時 | 2024-07-05 21:27:30 |
合計ジャッジ時間 | 3,788 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 105 ms
40,704 KB |
testcase_01 | AC | 116 ms
40,772 KB |
testcase_02 | AC | 104 ms
40,932 KB |
testcase_03 | AC | 93 ms
39,676 KB |
testcase_04 | AC | 97 ms
40,268 KB |
testcase_05 | AC | 105 ms
40,732 KB |
testcase_06 | AC | 106 ms
40,676 KB |
testcase_07 | AC | 106 ms
40,828 KB |
testcase_08 | AC | 106 ms
40,916 KB |
testcase_09 | AC | 97 ms
40,268 KB |
ソースコード
import java.util.Arrays; import java.util.Scanner; public class Main { public static void main(String[] args){ Scanner sc = new Scanner(System.in); final int N = sc.nextInt(); final int K = sc.nextInt(); int[] arr = new int[N]; for(int i = 0; i < N; i++){ arr[i] = sc.nextInt(); } int max = Integer.MIN_VALUE; int min = Integer.MAX_VALUE; for(int i = 0; i < N; i++){ max = Math.max(max, arr[i]); min = Math.min(min, arr[i]); } System.out.println(max - min); } }