結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 11 ms
6,272 KB
testcase_01 AC 12 ms
6,144 KB
testcase_02 AC 13 ms
6,272 KB
testcase_03 AC 14 ms
6,272 KB
testcase_04 AC 12 ms
6,272 KB
testcase_05 AC 31 ms
6,656 KB
testcase_06 AC 101 ms
8,448 KB
testcase_07 AC 126 ms
8,960 KB
testcase_08 AC 493 ms
17,792 KB
testcase_09 AC 148 ms
9,600 KB
testcase_10 AC 726 ms
22,912 KB
testcase_11 AC 739 ms
22,912 KB
testcase_12 AC 711 ms
22,912 KB
testcase_13 AC 12 ms
6,144 KB
testcase_14 AC 12 ms
6,272 KB
testcase_15 AC 11 ms
6,272 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