結果

問題 No.1715 Dinner 2
ユーザー shinichishinichi
提出日時 2021-10-22 21:45:37
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 734 bytes
コンパイル時間 150 ms
コンパイル使用メモリ 82,280 KB
実行使用メモリ 76,360 KB
最終ジャッジ日時 2024-09-23 05:08:17
合計ジャッジ時間 3,633 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 41 ms
52,756 KB
testcase_02 AC 38 ms
52,964 KB
testcase_03 AC 38 ms
53,052 KB
testcase_04 AC 39 ms
52,152 KB
testcase_05 WA -
testcase_06 AC 42 ms
53,164 KB
testcase_07 AC 37 ms
53,196 KB
testcase_08 AC 38 ms
52,952 KB
testcase_09 AC 38 ms
52,472 KB
testcase_10 WA -
testcase_11 AC 111 ms
75,520 KB
testcase_12 AC 115 ms
75,812 KB
testcase_13 AC 121 ms
76,184 KB
testcase_14 AC 113 ms
75,964 KB
testcase_15 AC 103 ms
75,552 KB
testcase_16 AC 104 ms
75,804 KB
testcase_17 AC 82 ms
75,420 KB
testcase_18 AC 38 ms
54,000 KB
testcase_19 AC 38 ms
52,632 KB
testcase_20 AC 38 ms
53,104 KB
testcase_21 AC 38 ms
52,132 KB
testcase_22 WA -
testcase_23 AC 37 ms
52,468 KB
testcase_24 AC 37 ms
52,564 KB
testcase_25 AC 50 ms
63,740 KB
testcase_26 AC 49 ms
63,076 KB
testcase_27 AC 53 ms
63,632 KB
testcase_28 AC 52 ms
63,700 KB
testcase_29 AC 50 ms
63,736 KB
testcase_30 AC 50 ms
62,820 KB
testcase_31 AC 53 ms
64,872 KB
testcase_32 AC 126 ms
75,764 KB
testcase_33 AC 125 ms
76,156 KB
testcase_34 AC 122 ms
76,224 KB
testcase_35 AC 127 ms
76,360 KB
testcase_36 WA -
testcase_37 WA -
testcase_38 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

from itertools import combinations



N, D = map(int, input().split())
P = []
Q = []
for _ in range(N):
    p, q = map(int, input().split())
    P.append(p)
    Q.append(q)

result = -1001001001001001001

for i, j in combinations(range(N), 2):
    pi, qi = P[i], Q[i]
    pj, qj = P[j], Q[j]
    ans = -1001001001001001001
    if qi+qj-pi-pj >= 0:
        ans = max(min(-pi-pj+qi, -pi), min(-pj-pj+qj, -pj))
    else:
        ii, jj = qi-pi, qj-pj
        if N % 2 == 0:
            now = ii * (N-1) // 2 + jj * (N-1) // 2
            ans = now + max(min(-pi, -pi-pj+qi), min(-pi-pj+qj, -pj))
        else:
            now = ii * N // 2 + jj * N // 2
            ans = now + max(-pi, -pj)
    result = max(result, ans)
print(result)

0