結果

問題 No.817 Coin donation
ユーザー pluto77pluto77
提出日時 2019-04-28 13:33:22
言語 Python2
(2.7.18)
結果
AC  
実行時間 718 ms / 2,000 ms
コード長 260 bytes
コンパイル時間 426 ms
コンパイル使用メモリ 7,040 KB
実行使用メモリ 22,912 KB
最終ジャッジ日時 2024-05-09 12:53:47
合計ジャッジ時間 4,933 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 11 ms
6,812 KB
testcase_01 AC 11 ms
6,940 KB
testcase_02 AC 12 ms
6,944 KB
testcase_03 AC 13 ms
6,940 KB
testcase_04 AC 12 ms
6,944 KB
testcase_05 AC 32 ms
6,944 KB
testcase_06 AC 98 ms
8,448 KB
testcase_07 AC 121 ms
9,088 KB
testcase_08 AC 483 ms
17,664 KB
testcase_09 AC 144 ms
9,600 KB
testcase_10 AC 718 ms
22,912 KB
testcase_11 AC 701 ms
22,784 KB
testcase_12 AC 691 ms
22,784 KB
testcase_13 AC 11 ms
6,944 KB
testcase_14 AC 11 ms
6,940 KB
testcase_15 AC 10 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#yuki817

n,k=map(int,raw_input().split())
ab=[]
for i in xrange(n):
 ab.append(map(int,raw_input().split()))
l=0
r=10**9
while r-l>1:
 mid=(l+r)/2
 cnt=0
 for a,b in ab:
  if a>mid:
   continue
  cnt+=min(b,mid)-a+1
 if cnt>=k:
  r=mid
 else:
  l=mid
print r
0