結果

問題 No.21 平均の差
ユーザー aikon_marimoaikon_marimo
提出日時 2018-05-02 20:58:45
言語 Java21
(openjdk 21)
結果
AC  
実行時間 118 ms / 5,000 ms
コード長 466 bytes
コンパイル時間 1,809 ms
コンパイル使用メモリ 75,236 KB
実行使用メモリ 54,296 KB
最終ジャッジ日時 2024-06-28 00:22:29
合計ジャッジ時間 3,485 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 117 ms
54,124 KB
testcase_01 AC 105 ms
53,212 KB
testcase_02 AC 108 ms
53,060 KB
testcase_03 AC 107 ms
52,968 KB
testcase_04 AC 106 ms
52,820 KB
testcase_05 AC 117 ms
54,160 KB
testcase_06 AC 108 ms
53,084 KB
testcase_07 AC 101 ms
52,872 KB
testcase_08 AC 118 ms
54,296 KB
testcase_09 AC 115 ms
53,844 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

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

		int N = in.nextInt();
		int k = in.nextInt();

		int min = in.nextInt();
		int max = in.nextInt();
		if (max < min) {
			int t = max;
			max = min;
			min = t;
		}
		for (int i = 0; i < N - 2; i++) {
			int val = in.nextInt();
			if (max < val)
				max = val;
			if (min > val)
				min = val;
		}
		System.out.println(max - min);
	}
}
0