結果
問題 | No.615 集合に分けよう |
ユーザー | 夕叢霧香(ゆうむらきりか) |
提出日時 | 2017-12-15 00:12:27 |
言語 | Java21 (openjdk 21) |
結果 |
AC
|
実行時間 | 238 ms / 2,000 ms |
コード長 | 1,808 bytes |
コンパイル時間 | 2,645 ms |
コンパイル使用メモリ | 78,420 KB |
実行使用メモリ | 45,816 KB |
最終ジャッジ日時 | 2024-12-14 13:46:22 |
合計ジャッジ時間 | 7,241 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 55 ms
37,520 KB |
testcase_01 | AC | 54 ms
37,084 KB |
testcase_02 | AC | 53 ms
37,308 KB |
testcase_03 | AC | 55 ms
37,120 KB |
testcase_04 | AC | 53 ms
37,120 KB |
testcase_05 | AC | 53 ms
37,248 KB |
testcase_06 | AC | 54 ms
37,032 KB |
testcase_07 | AC | 55 ms
37,332 KB |
testcase_08 | AC | 54 ms
37,292 KB |
testcase_09 | AC | 55 ms
37,248 KB |
testcase_10 | AC | 56 ms
37,424 KB |
testcase_11 | AC | 54 ms
37,296 KB |
testcase_12 | AC | 55 ms
37,028 KB |
testcase_13 | AC | 59 ms
37,424 KB |
testcase_14 | AC | 71 ms
38,448 KB |
testcase_15 | AC | 141 ms
40,844 KB |
testcase_16 | AC | 232 ms
45,560 KB |
testcase_17 | AC | 238 ms
45,108 KB |
testcase_18 | AC | 234 ms
45,816 KB |
testcase_19 | AC | 228 ms
45,268 KB |
testcase_20 | AC | 228 ms
45,344 KB |
testcase_21 | AC | 226 ms
45,492 KB |
testcase_22 | AC | 230 ms
45,248 KB |
testcase_23 | AC | 173 ms
44,940 KB |
testcase_24 | AC | 222 ms
45,312 KB |
testcase_25 | AC | 55 ms
37,300 KB |
testcase_26 | AC | 53 ms
37,268 KB |
testcase_27 | AC | 141 ms
43,580 KB |
testcase_28 | AC | 147 ms
43,380 KB |
testcase_29 | AC | 197 ms
44,336 KB |
testcase_30 | AC | 196 ms
44,880 KB |
ソースコード
import java.io.*; import java.util.*; class Main { public static void main(String[] args) { MyScanner sc = new MyScanner(); out = new PrintWriter(new BufferedOutputStream(System.out)); int n=sc.nextInt(); int k=sc.nextInt(); long[]a=new long[n]; for(int i=0;i<n;++i)a[i]=sc.nextLong(); Arrays.sort(a); long[]b=new long[n-1]; for(int i=0;i<n-1;++i)b[i]=a[i+1]-a[i]; Arrays.sort(b); long t=0; for(int i=0;i<n-k;++i)t+=b[i]; out.println(t); out.close(); } // http://codeforces.com/blog/entry/7018 //-----------PrintWriter for faster output--------------------------------- public static PrintWriter out; //-----------MyScanner class for faster input---------- public static class MyScanner { BufferedReader br; StringTokenizer st; public MyScanner() { br = new BufferedReader(new InputStreamReader(System.in)); } String next() { while (st == null || !st.hasMoreElements()) { try { st = new StringTokenizer(br.readLine()); } catch (IOException e) { e.printStackTrace(); } } return st.nextToken(); } int nextInt() { return Integer.parseInt(next()); } long nextLong() { return Long.parseLong(next()); } double nextDouble() { return Double.parseDouble(next()); } String nextLine(){ String str = ""; try { str = br.readLine(); } catch (IOException e) { e.printStackTrace(); } return str; } } }