結果

問題 No.1715 Dinner 2
ユーザー 👑 SPD_9X2SPD_9X2
提出日時 2021-10-22 21:36:47
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 692 bytes
コンパイル時間 637 ms
コンパイル使用メモリ 82,276 KB
実行使用メモリ 69,448 KB
最終ジャッジ日時 2024-09-23 04:53:53
合計ジャッジ時間 3,351 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
53,508 KB
testcase_01 AC 38 ms
52,464 KB
testcase_02 AC 39 ms
53,012 KB
testcase_03 AC 37 ms
52,864 KB
testcase_04 AC 38 ms
52,620 KB
testcase_05 AC 38 ms
53,008 KB
testcase_06 WA -
testcase_07 AC 37 ms
52,868 KB
testcase_08 AC 38 ms
52,428 KB
testcase_09 AC 39 ms
53,280 KB
testcase_10 WA -
testcase_11 AC 73 ms
66,116 KB
testcase_12 AC 84 ms
69,448 KB
testcase_13 AC 88 ms
69,260 KB
testcase_14 AC 79 ms
68,000 KB
testcase_15 AC 87 ms
68,448 KB
testcase_16 AC 70 ms
67,348 KB
testcase_17 AC 64 ms
67,064 KB
testcase_18 AC 37 ms
53,124 KB
testcase_19 AC 37 ms
53,692 KB
testcase_20 AC 38 ms
52,836 KB
testcase_21 AC 38 ms
52,744 KB
testcase_22 AC 38 ms
52,656 KB
testcase_23 AC 38 ms
52,664 KB
testcase_24 AC 37 ms
52,088 KB
testcase_25 AC 52 ms
63,640 KB
testcase_26 AC 54 ms
65,116 KB
testcase_27 AC 52 ms
65,136 KB
testcase_28 AC 53 ms
64,228 KB
testcase_29 AC 52 ms
64,252 KB
testcase_30 AC 52 ms
64,924 KB
testcase_31 AC 55 ms
65,056 KB
testcase_32 AC 85 ms
68,280 KB
testcase_33 AC 86 ms
67,252 KB
testcase_34 AC 85 ms
68,252 KB
testcase_35 AC 85 ms
66,668 KB
testcase_36 AC 39 ms
53,396 KB
testcase_37 WA -
testcase_38 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

"""

同じ2種類のみを繰り返すのが最適?


"""

import sys
from sys import stdin
import math

N,D = map(int,stdin.readline().split())

PQ = []

for i in range(N):
    P,Q = map(int,stdin.readline().split())
    PQ.append((P,Q))

ans = float("-inf")

for i in range(N):
    for j in range(N):

        pi,qi = PQ[i]
        pj,qj = PQ[j]

        if i == j:
            continue

        nans = min(-1 * pi , -1*pi + qi - pj)

        last = (-pi+qi-pj+qj) * (D//2) + (-pj+qj) * (D % 2)

        if D % 2 == 0:
            nans = min(nans , last-qj , last-qj+pj-qi)
        else:
            nans = min(nans , last-qi , last-qi+pi-qj)

        ans = max(ans , nans)

print (ans)
0