結果

問題 No.21 平均の差
ユーザー shinshin
提出日時 2022-05-12 19:06:12
言語 Java21
(openjdk 21)
結果
RE  
実行時間 -
コード長 449 bytes
コンパイル時間 3,551 ms
コンパイル使用メモリ 75,492 KB
実行使用メモリ 41,412 KB
最終ジャッジ日時 2024-07-20 13:13:31
合計ジャッジ時間 5,397 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 96 ms
40,000 KB
testcase_01 AC 113 ms
41,344 KB
testcase_02 AC 107 ms
41,028 KB
testcase_03 RE -
testcase_04 RE -
testcase_05 AC 107 ms
40,916 KB
testcase_06 AC 96 ms
40,184 KB
testcase_07 AC 109 ms
41,412 KB
testcase_08 AC 105 ms
41,216 KB
testcase_09 AC 104 ms
40,976 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;
import java.util.TreeSet;
public class No21 {

	public static void main(String[] args) {
		//平均の差
		
		TreeSet<Integer> n = new TreeSet<>();
		
		Scanner s = new Scanner(System.in);
		int N = Integer.parseInt(s.nextLine()) , K = Integer.parseInt(s.nextLine()) , i = 0;
		for(i = 0;i < N;i++) {
			n.add(Integer.parseInt(s.nextLine()));
		}
		s.close();
		
		System.out.println(n.pollLast() - n.pollFirst());

	}

}
0