結果

問題 No.21 平均の差
ユーザー dazydazy
提出日時 2016-09-06 16:22:47
言語 Java21
(openjdk 21)
結果
AC  
実行時間 131 ms / 5,000 ms
コード長 580 bytes
コンパイル時間 3,294 ms
コンパイル使用メモリ 74,312 KB
実行使用メモリ 41,676 KB
最終ジャッジ日時 2024-11-15 20:36:13
合計ジャッジ時間 5,696 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 131 ms
41,104 KB
testcase_01 AC 130 ms
41,224 KB
testcase_02 AC 131 ms
41,220 KB
testcase_03 AC 125 ms
41,176 KB
testcase_04 AC 125 ms
41,540 KB
testcase_05 AC 127 ms
41,160 KB
testcase_06 AC 130 ms
41,436 KB
testcase_07 AC 123 ms
41,124 KB
testcase_08 AC 126 ms
41,676 KB
testcase_09 AC 124 ms
41,012 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Run {
    public static void main (String arg[]) {
        Scanner scan = new Scanner(System.in);
        int N = scan.nextInt();
        int K = scan.nextInt();
        if (N < 3||N > 9||K < 3||K > N) System.exit(1);
        int[] n = new int[N];
        int max = 0, min = 1001;
        for (int i = 0; i < N; i++) {
            n[i] = scan.nextInt();
            if (n[i] < 1||n[i] > 1000) System.exit(1);
            if (max < n[i]) max = n[i];
            if (min > n[i]) min = n[i];
        }

        System.out.println(max - min);
    }
}
0