結果

問題 No.1715 Dinner 2
ユーザー HydruHydru
提出日時 2021-10-22 22:12:30
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 636 bytes
コンパイル時間 308 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 70,144 KB
最終ジャッジ日時 2024-09-23 05:46:12
合計ジャッジ時間 3,503 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,352 KB
testcase_01 AC 40 ms
52,224 KB
testcase_02 AC 38 ms
51,968 KB
testcase_03 AC 38 ms
52,024 KB
testcase_04 AC 38 ms
52,224 KB
testcase_05 WA -
testcase_06 AC 36 ms
51,584 KB
testcase_07 AC 37 ms
51,968 KB
testcase_08 AC 37 ms
51,840 KB
testcase_09 AC 37 ms
51,776 KB
testcase_10 WA -
testcase_11 AC 88 ms
67,328 KB
testcase_12 AC 96 ms
68,352 KB
testcase_13 AC 104 ms
69,888 KB
testcase_14 AC 93 ms
69,120 KB
testcase_15 AC 101 ms
69,120 KB
testcase_16 AC 83 ms
67,712 KB
testcase_17 AC 74 ms
66,944 KB
testcase_18 AC 38 ms
51,968 KB
testcase_19 AC 37 ms
52,224 KB
testcase_20 AC 38 ms
52,096 KB
testcase_21 AC 37 ms
51,840 KB
testcase_22 AC 38 ms
52,096 KB
testcase_23 AC 38 ms
51,840 KB
testcase_24 AC 38 ms
52,096 KB
testcase_25 AC 56 ms
63,232 KB
testcase_26 AC 55 ms
64,000 KB
testcase_27 AC 52 ms
62,720 KB
testcase_28 AC 53 ms
62,976 KB
testcase_29 AC 52 ms
62,464 KB
testcase_30 AC 53 ms
63,360 KB
testcase_31 AC 53 ms
63,616 KB
testcase_32 AC 108 ms
69,504 KB
testcase_33 AC 107 ms
70,144 KB
testcase_34 AC 108 ms
69,248 KB
testcase_35 AC 105 ms
70,016 KB
testcase_36 AC 37 ms
52,096 KB
testcase_37 WA -
testcase_38 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

n,d=map(int,input().split())
food=[]
for _ in range(n):
    p,q=map(int,input().split())
    food.append([-p,q,q-p])
ans=-10**9+1
for i in range(n):
    for j in range(n):
        if i==j:
            continue
        tmp=min(food[i][0],food[i][0]+food[i][1]+food[j][0])
        if food[i][2]+food[j][2]<0:
            if tmp==food[i][0]:
                tmp=(food[i][2]+food[j][2])*(d//2-1)+food[i][0]
            else:
                if d%2==0:
                    tmp=tmp+(food[i][2]+food[j][2])*(d//2-1)
                else:
                    tmp=(food[i][2]+food[j][2])*((d-1)//2)+food[i][0]
        ans=max(ans,tmp)
print(ans)
0