結果

問題 No.21 平均の差
コンテスト
ユーザー kuramu
提出日時 2016-01-20 09:45:56
言語 Java
(openjdk 25.0.2)
コンパイル:
javac -encoding UTF8 _filename_
実行:
java -ea -Xmx700m -Xss256M -DONLINE_JUDGE=true _class_
結果
AC  
実行時間 29 ms / 5,000 ms
コード長 693 bytes
記録
記録タグの例:
初AC ショートコード 純ショートコード 純主流ショートコード 最速実行時間
コンパイル時間 1,407 ms
コンパイル使用メモリ 80,980 KB
実行使用メモリ 39,168 KB
最終ジャッジ日時 2026-04-09 19:53:27
合計ジャッジ時間 2,471 ms
ジャッジサーバーID
(参考情報)
judge1_0 / judge2_0
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 10
権限があれば一括ダウンロードができます

ソースコード

diff #
raw source code

import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;

public class Main {

	public static void main(String[] args) {
	      BufferedReader stdReader =new BufferedReader(new InputStreamReader(System.in));
	      try {
	    	  int N = Integer.parseInt(stdReader.readLine());
	    	  int K = Integer.parseInt(stdReader.readLine());
	    	  int max = 0;
	    	  int min = 1000;
	    	  int c = 0;
	    	  for(int i=0;i<N;i++){
	    		  c = Integer.parseInt(stdReader.readLine());
	    		  if(min>c) min = c;
	    		  if(max < c) max = c;
	    	  }
	    	  System.out.println(max-min);
	    	  } catch (IOException e) {
			e.printStackTrace();
	      }
	}
}
0