結果

問題 No.817 Coin donation
ユーザー roarisroaris
提出日時 2019-08-14 21:33:26
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 599 bytes
コンパイル時間 158 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 84,480 KB
最終ジャッジ日時 2024-09-19 14:34:42
合計ジャッジ時間 2,823 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
51,968 KB
testcase_01 AC 35 ms
52,096 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 AC 71 ms
70,528 KB
testcase_06 AC 85 ms
76,928 KB
testcase_07 AC 91 ms
76,800 KB
testcase_08 AC 130 ms
81,408 KB
testcase_09 AC 92 ms
76,800 KB
testcase_10 AC 161 ms
84,480 KB
testcase_11 AC 164 ms
84,224 KB
testcase_12 AC 165 ms
84,096 KB
testcase_13 AC 41 ms
51,840 KB
testcase_14 AC 40 ms
51,840 KB
testcase_15 AC 40 ms
51,840 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def judge(x):
    cnt = 0
    
    for Ai, Bi in AB:
        if Ai <= x <= Bi:
            cnt += x - Ai + 1
        elif Bi < x:
            cnt += Bi - Ai + 1
    
    if cnt >= K:
        return True
    else:
        return False
    
def binary_search():
    left, right = 0, 10 ** 8
    
    while left <= right:
        mid = (left + right) // 2
        
        if judge(mid):
            right = mid - 1
        else:
            left = mid + 1
    
    return left

N, K = map(int, input().split())
AB = [tuple(map(int, input().split())) for _ in range(N)]
ans = binary_search()
print(ans)
0