結果

問題 No.21 平均の差
ユーザー masuyuumasuyuu
提出日時 2020-10-20 21:03:11
言語 Java21
(openjdk 21)
結果
AC  
実行時間 113 ms / 5,000 ms
コード長 461 bytes
コンパイル時間 1,782 ms
コンパイル使用メモリ 73,880 KB
実行使用メモリ 41,284 KB
最終ジャッジ日時 2024-07-21 08:28:57
合計ジャッジ時間 3,638 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 108 ms
40,052 KB
testcase_01 AC 108 ms
41,040 KB
testcase_02 AC 113 ms
41,056 KB
testcase_03 AC 106 ms
40,756 KB
testcase_04 AC 102 ms
40,636 KB
testcase_05 AC 104 ms
41,284 KB
testcase_06 AC 106 ms
40,692 KB
testcase_07 AC 105 ms
41,036 KB
testcase_08 AC 99 ms
39,892 KB
testcase_09 AC 98 ms
39,964 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main{
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		int n = sc.nextInt();
		int g = sc.nextInt();
		int[] a = new int[n];
		for(int i=0;i<n;i++) {
			a[i] = sc.nextInt();
		}

		for(int i=0;i<n;i++) {
			for(int j=a.length-1;j>0+i;j--) {
				if(a[j]>a[j-1]) {
					int temp = a[j];
					a[j] = a[j-1];
					a[j-1] = temp;
				}
			}
		}
		System.out.println(a[0]-a[a.length-1]);

	}
}
0