結果

問題 No.1715 Dinner 2
ユーザー hir355hir355
提出日時 2021-10-22 21:38:30
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 486 bytes
コンパイル時間 175 ms
コンパイル使用メモリ 82,168 KB
実行使用メモリ 67,972 KB
最終ジャッジ日時 2024-09-23 04:57:08
合計ジャッジ時間 3,408 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,564 KB
testcase_01 AC 38 ms
52,756 KB
testcase_02 AC 39 ms
51,900 KB
testcase_03 AC 38 ms
51,836 KB
testcase_04 AC 40 ms
52,288 KB
testcase_05 WA -
testcase_06 AC 38 ms
52,496 KB
testcase_07 WA -
testcase_08 AC 42 ms
52,740 KB
testcase_09 AC 39 ms
52,564 KB
testcase_10 WA -
testcase_11 AC 68 ms
64,536 KB
testcase_12 AC 70 ms
65,880 KB
testcase_13 AC 74 ms
66,240 KB
testcase_14 AC 69 ms
66,080 KB
testcase_15 AC 72 ms
67,136 KB
testcase_16 AC 63 ms
63,960 KB
testcase_17 AC 60 ms
65,016 KB
testcase_18 WA -
testcase_19 AC 38 ms
52,884 KB
testcase_20 AC 38 ms
52,496 KB
testcase_21 AC 38 ms
52,824 KB
testcase_22 WA -
testcase_23 AC 39 ms
52,000 KB
testcase_24 AC 39 ms
51,812 KB
testcase_25 AC 47 ms
60,124 KB
testcase_26 AC 48 ms
62,096 KB
testcase_27 AC 47 ms
61,148 KB
testcase_28 AC 46 ms
61,180 KB
testcase_29 AC 47 ms
60,420 KB
testcase_30 AC 46 ms
60,268 KB
testcase_31 AC 46 ms
61,228 KB
testcase_32 AC 76 ms
66,428 KB
testcase_33 AC 75 ms
67,972 KB
testcase_34 AC 75 ms
66,660 KB
testcase_35 AC 76 ms
66,164 KB
testcase_36 AC 37 ms
53,060 KB
testcase_37 AC 38 ms
52,276 KB
testcase_38 AC 43 ms
51,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, d = map(int, input().split())
p = [0] * n
q = [0] * n
for i in range(n):
    p[i], q[i] = map(int, input().split())
ans = -1000000000
for i in range(n):
    for j in range(n):
        if i == j:
            continue
        res = -p[i]
        if d % 2 == 0:
            res = min(res, (q[i] - p[i] + q[j] - p[j]) * (d // 2) - q[j])
        else:
            res = min(res, (q[i] - p[i] + q[j] - p[j]) * (d // 2) - p[j])
        if ans < res:
            ans = res
print(min(ans, 0))
0