結果

問題 No.1715 Dinner 2
ユーザー hir355hir355
提出日時 2021-10-22 21:41:10
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 617 bytes
コンパイル時間 334 ms
コンパイル使用メモリ 82,108 KB
実行使用メモリ 66,304 KB
最終ジャッジ日時 2024-09-23 05:00:50
合計ジャッジ時間 3,472 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
51,584 KB
testcase_01 AC 38 ms
51,968 KB
testcase_02 AC 38 ms
51,712 KB
testcase_03 AC 37 ms
52,096 KB
testcase_04 AC 41 ms
52,224 KB
testcase_05 WA -
testcase_06 AC 37 ms
52,096 KB
testcase_07 WA -
testcase_08 AC 36 ms
52,480 KB
testcase_09 AC 37 ms
52,096 KB
testcase_10 WA -
testcase_11 AC 66 ms
64,640 KB
testcase_12 AC 69 ms
65,408 KB
testcase_13 AC 73 ms
65,920 KB
testcase_14 AC 68 ms
65,584 KB
testcase_15 AC 70 ms
65,792 KB
testcase_16 AC 64 ms
64,000 KB
testcase_17 AC 58 ms
63,616 KB
testcase_18 WA -
testcase_19 AC 38 ms
51,840 KB
testcase_20 AC 40 ms
52,352 KB
testcase_21 AC 37 ms
51,840 KB
testcase_22 WA -
testcase_23 AC 37 ms
52,224 KB
testcase_24 AC 37 ms
51,584 KB
testcase_25 AC 46 ms
60,112 KB
testcase_26 AC 47 ms
61,440 KB
testcase_27 AC 45 ms
60,288 KB
testcase_28 AC 45 ms
60,160 KB
testcase_29 AC 46 ms
60,264 KB
testcase_30 AC 46 ms
60,288 KB
testcase_31 AC 46 ms
60,544 KB
testcase_32 AC 75 ms
66,048 KB
testcase_33 AC 82 ms
66,176 KB
testcase_34 AC 74 ms
66,304 KB
testcase_35 AC 75 ms
66,304 KB
testcase_36 AC 38 ms
52,352 KB
testcase_37 AC 37 ms
52,096 KB
testcase_38 AC 38 ms
51,584 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())
if d == 1:
    ans = -1000000000
    for i in range(n):
        if ans < -p[i]:
            ans = -p[i]
    print(ans)
    exit(0)
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