結果

問題 No.21 平均の差
ユーザー aikon_marimoaikon_marimo
提出日時 2018-04-29 00:38:44
言語 Java
(openjdk 23)
結果
WA  
実行時間 -
コード長 405 bytes
コンパイル時間 2,153 ms
コンパイル使用メモリ 73,952 KB
実行使用メモリ 41,504 KB
最終ジャッジ日時 2024-06-27 23:28:23
合計ジャッジ時間 3,970 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 135 ms
41,016 KB
testcase_01 WA -
testcase_02 AC 130 ms
41,504 KB
testcase_03 AC 132 ms
41,340 KB
testcase_04 AC 132 ms
41,100 KB
testcase_05 AC 131 ms
41,168 KB
testcase_06 WA -
testcase_07 AC 133 ms
41,176 KB
testcase_08 AC 119 ms
40,164 KB
testcase_09 AC 131 ms
41,052 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

class Main {

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

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