結果

問題 No.21 平均の差
ユーザー chiho_miyakochiho_miyako
提出日時 2015-04-07 16:24:06
言語 Java21
(openjdk 21)
結果
AC  
実行時間 123 ms / 5,000 ms
コード長 402 bytes
コンパイル時間 2,031 ms
コンパイル使用メモリ 74,572 KB
実行使用メモリ 41,400 KB
最終ジャッジ日時 2024-07-04 10:47:09
合計ジャッジ時間 3,586 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 114 ms
41,240 KB
testcase_01 AC 118 ms
41,060 KB
testcase_02 AC 99 ms
39,276 KB
testcase_03 AC 108 ms
40,296 KB
testcase_04 AC 105 ms
39,760 KB
testcase_05 AC 119 ms
41,120 KB
testcase_06 AC 120 ms
41,400 KB
testcase_07 AC 104 ms
39,808 KB
testcase_08 AC 123 ms
41,072 KB
testcase_09 AC 106 ms
40,076 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    public static void main(String[] args) throws Exception {
        Scanner koko = new Scanner(System.in);
        int n = koko.nextInt();
        int k = koko.nextInt();
        int[] p = new int[n];
        for(int i=0; i<n; i++){
            p[i] = koko.nextInt();
        }
        Arrays.sort(p);
        System.out.println(p[n-1]-p[0]);
        
    }
}
0