結果
問題 | No.21 平均の差 |
ユーザー | kuramu |
提出日時 | 2016-01-20 09:45:56 |
言語 | Java21 (openjdk 21) |
結果 |
AC
|
実行時間 | 54 ms / 5,000 ms |
コード長 | 693 bytes |
コンパイル時間 | 2,009 ms |
コンパイル使用メモリ | 73,316 KB |
実行使用メモリ | 37,204 KB |
最終ジャッジ日時 | 2024-09-21 14:43:25 |
合計ジャッジ時間 | 3,038 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 51 ms
36,848 KB |
testcase_01 | AC | 53 ms
37,204 KB |
testcase_02 | AC | 53 ms
36,900 KB |
testcase_03 | AC | 52 ms
36,924 KB |
testcase_04 | AC | 53 ms
36,696 KB |
testcase_05 | AC | 54 ms
36,876 KB |
testcase_06 | AC | 52 ms
36,784 KB |
testcase_07 | AC | 52 ms
37,072 KB |
testcase_08 | AC | 52 ms
37,008 KB |
testcase_09 | AC | 51 ms
36,848 KB |
ソースコード
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(); } } }