結果

問題 No.1715 Dinner 2
ユーザー rlangevinrlangevin
提出日時 2023-11-20 12:44:00
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 627 bytes
コンパイル時間 369 ms
コンパイル使用メモリ 82,704 KB
実行使用メモリ 71,040 KB
最終ジャッジ日時 2024-09-26 06:37:38
合計ジャッジ時間 3,767 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
51,584 KB
testcase_01 AC 34 ms
51,712 KB
testcase_02 AC 35 ms
52,096 KB
testcase_03 AC 34 ms
51,840 KB
testcase_04 AC 33 ms
52,096 KB
testcase_05 WA -
testcase_06 AC 33 ms
51,584 KB
testcase_07 AC 33 ms
51,840 KB
testcase_08 AC 32 ms
52,224 KB
testcase_09 AC 32 ms
51,840 KB
testcase_10 WA -
testcase_11 AC 75 ms
70,400 KB
testcase_12 AC 67 ms
67,456 KB
testcase_13 AC 67 ms
66,560 KB
testcase_14 AC 64 ms
66,816 KB
testcase_15 AC 67 ms
66,688 KB
testcase_16 AC 72 ms
70,016 KB
testcase_17 AC 67 ms
69,504 KB
testcase_18 AC 34 ms
51,712 KB
testcase_19 AC 34 ms
52,096 KB
testcase_20 AC 32 ms
51,584 KB
testcase_21 AC 32 ms
51,584 KB
testcase_22 AC 33 ms
51,968 KB
testcase_23 AC 34 ms
51,840 KB
testcase_24 AC 34 ms
51,840 KB
testcase_25 AC 54 ms
65,536 KB
testcase_26 AC 47 ms
62,464 KB
testcase_27 AC 53 ms
65,664 KB
testcase_28 AC 51 ms
64,512 KB
testcase_29 AC 51 ms
64,256 KB
testcase_30 AC 49 ms
64,000 KB
testcase_31 AC 47 ms
63,488 KB
testcase_32 AC 82 ms
70,912 KB
testcase_33 AC 85 ms
71,040 KB
testcase_34 AC 83 ms
70,784 KB
testcase_35 AC 84 ms
71,040 KB
testcase_36 AC 35 ms
51,840 KB
testcase_37 WA -
testcase_38 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

N, D = map(int, input().split())
P, Q, R = [0] * N, [0] * N, [0] * N
for i in range(N):
    P[i], Q[i] = map(int, input().split())
    R[i] = Q[i] - P[i]

ans = -10**18
for i in range(N):
    for j in range(N):
        if i == j:
            continue
        if R[i] >= 0 and R[j] >= 0:
            mi = min(-P[i], R[i] - P[j])
        else:
            now = (R[i] + R[j]) * ((D-1)//2)
            if D % 2:
                mi = -P[i]
            else:
                mi = min(-P[i], R[i] - P[j])
            if now <= 0:
                mi += now
        ans = max(ans, mi)

print(ans)
0