結果

問題 No.1715 Dinner 2
ユーザー taiga0629kyoprotaiga0629kyopro
提出日時 2021-10-22 22:12:25
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 540 bytes
コンパイル時間 182 ms
コンパイル使用メモリ 81,900 KB
実行使用メモリ 76,496 KB
最終ジャッジ日時 2024-09-23 05:46:08
合計ジャッジ時間 6,414 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
52,608 KB
testcase_01 AC 46 ms
58,112 KB
testcase_02 AC 49 ms
60,544 KB
testcase_03 AC 40 ms
52,480 KB
testcase_04 AC 47 ms
59,776 KB
testcase_05 AC 49 ms
60,544 KB
testcase_06 AC 42 ms
52,352 KB
testcase_07 AC 47 ms
59,648 KB
testcase_08 AC 50 ms
60,032 KB
testcase_09 AC 45 ms
59,008 KB
testcase_10 AC 48 ms
60,160 KB
testcase_11 AC 299 ms
75,520 KB
testcase_12 AC 251 ms
76,496 KB
testcase_13 AC 221 ms
75,648 KB
testcase_14 AC 244 ms
75,788 KB
testcase_15 AC 286 ms
76,268 KB
testcase_16 AC 242 ms
75,392 KB
testcase_17 AC 182 ms
76,032 KB
testcase_18 AC 69 ms
72,064 KB
testcase_19 AC 70 ms
74,208 KB
testcase_20 AC 66 ms
72,192 KB
testcase_21 AC 60 ms
68,480 KB
testcase_22 AC 68 ms
73,216 KB
testcase_23 AC 74 ms
75,648 KB
testcase_24 AC 74 ms
75,276 KB
testcase_25 AC 93 ms
75,976 KB
testcase_26 AC 85 ms
75,776 KB
testcase_27 AC 89 ms
75,648 KB
testcase_28 AC 89 ms
75,236 KB
testcase_29 AC 89 ms
75,904 KB
testcase_30 AC 91 ms
75,648 KB
testcase_31 AC 93 ms
75,300 KB
testcase_32 AC 387 ms
75,776 KB
testcase_33 AC 379 ms
76,116 KB
testcase_34 AC 353 ms
76,244 KB
testcase_35 AC 353 ms
75,924 KB
testcase_36 WA -
testcase_37 WA -
testcase_38 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

n,d=map(int,input().split())
p=[]
q=[]
for i in range(n):
    a,b=map(int,input().split())
    p.append(a)
    q.append(b)
def f(x):
    res=0
    f=-1
    for _ in range(d):
        up=-10**18
        ind=-1
        for i in range(n):
            if i!=f and res-p[i]>=x:
                up=max(up,q[i]-p[i])
                if up==q[i]-p[i]:ind=i

        if up == -10 ** 18: return False
        res+=up
        f=ind
    return True

ok=-10**18
ng=0
while ng-ok>1:
    mid=(ok+ng)//2
    if f(mid):ok=mid
    else:ng=mid
print(ok)




0