結果

問題 No.1715 Dinner 2
ユーザー HydruHydru
提出日時 2021-10-22 23:01:45
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 508 bytes
コンパイル時間 184 ms
コンパイル使用メモリ 82,440 KB
実行使用メモリ 71,312 KB
最終ジャッジ日時 2024-09-23 06:54:56
合計ジャッジ時間 3,425 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
53,008 KB
testcase_01 AC 39 ms
53,088 KB
testcase_02 AC 39 ms
52,260 KB
testcase_03 AC 38 ms
52,356 KB
testcase_04 AC 38 ms
53,092 KB
testcase_05 WA -
testcase_06 AC 39 ms
52,016 KB
testcase_07 AC 39 ms
52,536 KB
testcase_08 AC 39 ms
53,436 KB
testcase_09 AC 38 ms
52,956 KB
testcase_10 AC 39 ms
53,088 KB
testcase_11 AC 84 ms
69,076 KB
testcase_12 AC 90 ms
69,672 KB
testcase_13 AC 92 ms
69,092 KB
testcase_14 AC 87 ms
70,848 KB
testcase_15 AC 91 ms
69,872 KB
testcase_16 AC 79 ms
68,548 KB
testcase_17 AC 73 ms
68,020 KB
testcase_18 AC 38 ms
53,000 KB
testcase_19 AC 39 ms
52,908 KB
testcase_20 AC 38 ms
53,156 KB
testcase_21 AC 39 ms
52,832 KB
testcase_22 AC 38 ms
51,808 KB
testcase_23 AC 39 ms
52,312 KB
testcase_24 AC 38 ms
53,752 KB
testcase_25 AC 54 ms
64,036 KB
testcase_26 AC 54 ms
64,276 KB
testcase_27 AC 56 ms
63,644 KB
testcase_28 AC 53 ms
62,764 KB
testcase_29 AC 53 ms
63,364 KB
testcase_30 AC 52 ms
63,448 KB
testcase_31 AC 53 ms
64,380 KB
testcase_32 AC 96 ms
70,316 KB
testcase_33 AC 98 ms
70,144 KB
testcase_34 AC 98 ms
70,664 KB
testcase_35 AC 96 ms
71,312 KB
testcase_36 WA -
testcase_37 WA -
testcase_38 AC 38 ms
52,772 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,d=map(int,input().split())
food=[]
for _ in range(n):
    p,q=map(int,input().split())
    food.append([-p,q,q-p])
food.sort()
las=food[-1][0]
ans=-10**9+1
for i in range(n):
    for j in range(n):
        if i==j:
            continue
        T=food[i][2]+food[j][2]
        tmp=min(food[i][0],food[i][2]+food[j][0])
        if T<0:
            if d%2==0:
                tmp=T*(d//2-1)+food[i][0]
            else:
                tmp=T*((d-1)//2)+min(-food[j][1],las)
        ans=max(ans,tmp)
print(ans)
0