結果

問題 No.1715 Dinner 2
ユーザー aaaaaaaaaa2230aaaaaaaaaa2230
提出日時 2021-10-22 21:47:04
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 849 bytes
コンパイル時間 298 ms
コンパイル使用メモリ 82,136 KB
実行使用メモリ 76,904 KB
最終ジャッジ日時 2024-09-23 05:10:39
合計ジャッジ時間 4,051 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,824 KB
testcase_01 AC 38 ms
52,288 KB
testcase_02 AC 38 ms
53,012 KB
testcase_03 AC 39 ms
52,364 KB
testcase_04 AC 40 ms
53,860 KB
testcase_05 WA -
testcase_06 AC 39 ms
52,316 KB
testcase_07 AC 39 ms
53,108 KB
testcase_08 AC 42 ms
53,348 KB
testcase_09 AC 38 ms
53,404 KB
testcase_10 WA -
testcase_11 AC 115 ms
76,276 KB
testcase_12 AC 124 ms
76,412 KB
testcase_13 AC 123 ms
76,656 KB
testcase_14 AC 115 ms
76,528 KB
testcase_15 AC 123 ms
76,264 KB
testcase_16 AC 107 ms
76,320 KB
testcase_17 AC 101 ms
76,524 KB
testcase_18 AC 38 ms
53,412 KB
testcase_19 AC 38 ms
53,044 KB
testcase_20 AC 37 ms
53,356 KB
testcase_21 AC 38 ms
52,984 KB
testcase_22 AC 38 ms
53,096 KB
testcase_23 AC 38 ms
53,416 KB
testcase_24 AC 39 ms
52,872 KB
testcase_25 AC 69 ms
71,260 KB
testcase_26 AC 63 ms
69,304 KB
testcase_27 AC 66 ms
70,760 KB
testcase_28 AC 65 ms
69,300 KB
testcase_29 AC 60 ms
67,428 KB
testcase_30 AC 60 ms
66,776 KB
testcase_31 AC 64 ms
69,488 KB
testcase_32 AC 130 ms
76,768 KB
testcase_33 AC 116 ms
76,904 KB
testcase_34 AC 140 ms
76,512 KB
testcase_35 AC 120 ms
76,176 KB
testcase_36 AC 39 ms
53,272 KB
testcase_37 WA -
testcase_38 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

n,d = map(int,input().split())
PQ = [list(map(int,input().split())) for i in range(n)]

ans = -10**10
for i in range(n):
    for j in range(i):
        a,b = PQ[i]
        c,d = PQ[j]
        if a+c <= b+d:
            ans = max(ans,min(-a,-a+b-c))
            ans = max(ans,min(-c,-c+d-a))
        else:
            base = (-a-c+b+d)*(d//2-1)
            left = d-2*(d//2-1)
            cand = base
            num = base
            for _ in range(2):
                for k in range(left):
                    if k%2:
                        num -= a
                        cand = min(cand,num)
                        num += b
                    else:
                        num -= c
                        cand = min(cand,num)
                        num += d
                ans = max(ans,cand)
                a,b,c,d = c,d,a,b
print(ans)
0