結果

問題 No.21 平均の差
ユーザー yagi2yagi2
提出日時 2017-04-26 12:21:12
言語 Java21
(openjdk 21)
結果
AC  
実行時間 133 ms / 5,000 ms
コード長 747 bytes
コンパイル時間 2,230 ms
コンパイル使用メモリ 80,992 KB
実行使用メモリ 54,188 KB
最終ジャッジ日時 2024-09-13 14:01:45
合計ジャッジ時間 4,222 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 133 ms
53,956 KB
testcase_01 AC 130 ms
54,016 KB
testcase_02 AC 131 ms
53,888 KB
testcase_03 AC 130 ms
54,188 KB
testcase_04 AC 131 ms
53,824 KB
testcase_05 AC 132 ms
53,980 KB
testcase_06 AC 131 ms
53,756 KB
testcase_07 AC 131 ms
53,904 KB
testcase_08 AC 129 ms
54,132 KB
testcase_09 AC 129 ms
53,832 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package yukicoder.No21;

import java.util.ArrayList;
import java.util.List;
import java.util.Scanner;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);

        int N = Integer.parseInt(sc.next());
        int K = Integer.parseInt(sc.next());

        List<Integer> n = new ArrayList<>();
        for (int i = 0; i < N; i++) {
            n.add(Integer.parseInt(sc.next()));
        }

        int ans = 0;
        for (int i = 0; i < N; i++) {
            for (int j = 0; j < N; j++) {
                if (ans < Math.abs(n.get(i) - n.get(j))) {
                    ans = Math.abs(n.get(i) - n.get(j));
                }
            }
        }
        System.out.println(ans);
    }
}
0