結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
52,884 KB
testcase_01 AC 41 ms
53,572 KB
testcase_02 AC 39 ms
52,488 KB
testcase_03 AC 39 ms
52,144 KB
testcase_04 AC 39 ms
53,232 KB
testcase_05 AC 38 ms
53,096 KB
testcase_06 AC 39 ms
51,816 KB
testcase_07 AC 38 ms
52,072 KB
testcase_08 AC 38 ms
53,216 KB
testcase_09 AC 38 ms
52,884 KB
testcase_10 WA -
testcase_11 AC 112 ms
75,896 KB
testcase_12 AC 138 ms
76,148 KB
testcase_13 AC 137 ms
76,172 KB
testcase_14 AC 129 ms
75,916 KB
testcase_15 AC 134 ms
75,936 KB
testcase_16 AC 104 ms
75,992 KB
testcase_17 AC 94 ms
75,996 KB
testcase_18 AC 38 ms
53,564 KB
testcase_19 AC 38 ms
53,300 KB
testcase_20 AC 37 ms
52,768 KB
testcase_21 AC 37 ms
53,320 KB
testcase_22 AC 39 ms
52,124 KB
testcase_23 AC 40 ms
52,800 KB
testcase_24 AC 38 ms
52,988 KB
testcase_25 AC 54 ms
64,796 KB
testcase_26 AC 57 ms
65,632 KB
testcase_27 AC 55 ms
64,908 KB
testcase_28 AC 54 ms
64,640 KB
testcase_29 AC 54 ms
64,800 KB
testcase_30 AC 54 ms
65,524 KB
testcase_31 AC 57 ms
66,024 KB
testcase_32 AC 136 ms
76,188 KB
testcase_33 AC 135 ms
76,044 KB
testcase_34 AC 133 ms
76,256 KB
testcase_35 AC 130 ms
76,140 KB
testcase_36 AC 38 ms
52,000 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
        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