結果

問題 No.817 Coin donation
ユーザー takeya_okinotakeya_okino
提出日時 2019-08-07 22:00:50
言語 Java21
(openjdk 21)
結果
AC  
実行時間 717 ms / 2,000 ms
コード長 819 bytes
コンパイル時間 2,239 ms
コンパイル使用メモリ 77,344 KB
実行使用メモリ 57,772 KB
最終ジャッジ日時 2024-07-18 18:53:13
合計ジャッジ時間 9,893 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 107 ms
39,832 KB
testcase_01 AC 107 ms
41,076 KB
testcase_02 AC 115 ms
41,076 KB
testcase_03 AC 140 ms
41,468 KB
testcase_04 AC 122 ms
40,868 KB
testcase_05 AC 206 ms
46,084 KB
testcase_06 AC 382 ms
48,072 KB
testcase_07 AC 399 ms
48,132 KB
testcase_08 AC 632 ms
52,628 KB
testcase_09 AC 444 ms
48,308 KB
testcase_10 AC 712 ms
57,540 KB
testcase_11 AC 712 ms
57,772 KB
testcase_12 AC 717 ms
57,312 KB
testcase_13 AC 130 ms
41,360 KB
testcase_14 AC 99 ms
40,128 KB
testcase_15 AC 103 ms
41,592 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
  public static void main(String[] args) {
    Scanner sc = new Scanner(System.in);
    int n = sc.nextInt();
    long k = sc.nextLong();
    long[] a = new long[n];
    long[] b = new long[n];
    for(int i = 0; i < n; i++) {
      a[i] = sc.nextLong();
      b[i] = sc.nextLong();
    }
    long l = 1;
    long r = (long)Math.pow(10, 9) + 1;
    long ans = 0;
    while(l < r) {
      long med = (l + r) / 2;
      long t = 0;
      for(int i = 0; i < n; i++) {
        if(a[i] <= med) {
          if(b[i] <= med) {
            t += (b[i] - a[i] + 1);
          } else {
            t += (med - a[i] + 1);
          }
        }
      }
      if(t >= k) {
        ans = med;
        r = med;
      } else {
        l = med + 1;
      }
    }
    System.out.println(ans);
  }
}
0