結果

問題 No.21 平均の差
ユーザー キョウチクキョウチク
提出日時 2022-05-20 20:18:14
言語 Java21
(openjdk 21)
結果
AC  
実行時間 121 ms / 5,000 ms
コード長 545 bytes
コンパイル時間 3,158 ms
コンパイル使用メモリ 74,520 KB
実行使用メモリ 54,112 KB
最終ジャッジ日時 2024-09-20 05:42:56
合計ジャッジ時間 5,021 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 118 ms
54,104 KB
testcase_01 AC 121 ms
54,032 KB
testcase_02 AC 121 ms
54,028 KB
testcase_03 AC 121 ms
54,024 KB
testcase_04 AC 119 ms
54,008 KB
testcase_05 AC 118 ms
54,112 KB
testcase_06 AC 105 ms
53,092 KB
testcase_07 AC 116 ms
53,856 KB
testcase_08 AC 111 ms
53,452 KB
testcase_09 AC 108 ms
53,556 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
public class Test12 {
  public static void main(String[] args){
    Scanner sc=new Scanner(System.in);
    String[] line;
    line=sc.nextLine().split(" ");
    int n=Integer.parseInt(line[0]);
    line=sc.nextLine().split(" ");
    int k=Integer.parseInt(line[0]);
    int leng=n/k,leng_1=(n+1)/k;
    int[] num_=new int[n];
    for(int i=0;i<n;i++){
      line=sc.nextLine().split(" ");
      num_[i]=Integer.parseInt(line[0]);
    }
    Arrays.sort(num_);
    int tmp=num_[n-1]-num_[0];
    System.out.println(tmp);
  }
}
0