結果

問題 No.1715 Dinner 2
ユーザー taiga0629kyoprotaiga0629kyopro
提出日時 2021-10-22 21:48:58
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 665 bytes
コンパイル時間 141 ms
コンパイル使用メモリ 82,040 KB
実行使用メモリ 76,492 KB
最終ジャッジ日時 2024-09-23 05:12:40
合計ジャッジ時間 3,741 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
53,260 KB
testcase_01 AC 37 ms
52,500 KB
testcase_02 AC 38 ms
53,420 KB
testcase_03 AC 37 ms
51,964 KB
testcase_04 AC 39 ms
52,540 KB
testcase_05 AC 38 ms
53,288 KB
testcase_06 AC 38 ms
52,668 KB
testcase_07 AC 38 ms
52,264 KB
testcase_08 AC 38 ms
52,396 KB
testcase_09 AC 38 ms
52,884 KB
testcase_10 WA -
testcase_11 AC 112 ms
76,104 KB
testcase_12 AC 135 ms
75,912 KB
testcase_13 AC 133 ms
75,880 KB
testcase_14 AC 125 ms
76,244 KB
testcase_15 AC 132 ms
75,920 KB
testcase_16 AC 103 ms
75,740 KB
testcase_17 AC 93 ms
75,760 KB
testcase_18 AC 37 ms
52,940 KB
testcase_19 AC 38 ms
53,580 KB
testcase_20 AC 38 ms
53,136 KB
testcase_21 AC 37 ms
51,944 KB
testcase_22 AC 37 ms
53,044 KB
testcase_23 AC 38 ms
54,324 KB
testcase_24 AC 37 ms
53,012 KB
testcase_25 AC 54 ms
65,424 KB
testcase_26 AC 56 ms
66,164 KB
testcase_27 AC 53 ms
64,340 KB
testcase_28 AC 53 ms
66,252 KB
testcase_29 AC 54 ms
64,760 KB
testcase_30 AC 54 ms
65,208 KB
testcase_31 AC 58 ms
66,368 KB
testcase_32 AC 136 ms
76,196 KB
testcase_33 AC 133 ms
76,492 KB
testcase_34 AC 133 ms
76,080 KB
testcase_35 AC 131 ms
76,140 KB
testcase_36 AC 37 ms
52,804 KB
testcase_37 WA -
testcase_38 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

n,d=map(int,input().split())
p=[]
q=[]
for i in range(n):
    a,b=map(int,input().split())
    p.append(a)
    q.append(b)

ans=-2**64
for i in range(n):
    for j in range(n):
        if i==j:continue
        pi,qi=p[i],q[i]
        pj,qj=p[j],q[j]
        res=0
        day=d
        res=min(-pi,-pi+qi-pj)
        go=((d-2)//2)*2
        sub=(-pi+qi-pj+qj)*(go//2)
        day-=go
        for j in range(1,day+1):
            if j%2==1:
                sub-=pi
                res=min(res,sub)
                sub+=qi
            else:
                sub -= pj
                res = min(res, sub)
                sub += qj
        ans=max(ans,res)
print(ans)

0