結果

問題 No.817 Coin donation
ユーザー kohei2019kohei2019
提出日時 2022-04-18 22:41:27
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 455 bytes
コンパイル時間 137 ms
コンパイル使用メモリ 82,464 KB
実行使用メモリ 81,280 KB
最終ジャッジ日時 2024-06-09 14:41:30
合計ジャッジ時間 2,625 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
52,544 KB
testcase_01 AC 37 ms
53,420 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 AC 62 ms
71,832 KB
testcase_06 AC 80 ms
76,772 KB
testcase_07 AC 89 ms
76,532 KB
testcase_08 AC 134 ms
79,808 KB
testcase_09 AC 84 ms
77,300 KB
testcase_10 AC 169 ms
80,964 KB
testcase_11 AC 164 ms
80,956 KB
testcase_12 AC 167 ms
81,280 KB
testcase_13 WA -
testcase_14 WA -
testcase_15 AC 32 ms
52,284 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,K = map(int,input().split())
lsAB = []
for i in range(N):
    A,B = map(int,input().split())
    lsAB.append((A,B))

def is_ok(arg):
    cnt = 0
    for i in range(N):
        cnt += max(0,min(arg,lsAB[i][1])-lsAB[i][0]+1)
    return cnt > K
def meguru_bisect(ng, ok):
    while (abs(ok - ng) > 1):
        mid = (ok + ng) // 2
        if is_ok(mid):
            ok = mid
        else:
            ng = mid
    return ok
print(meguru_bisect(0,10**18+1))
0