結果
問題 | No.1715 Dinner 2 |
ユーザー | Hydru |
提出日時 | 2021-10-22 22:50:08 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 714 bytes |
コンパイル時間 | 1,092 ms |
コンパイル使用メモリ | 81,984 KB |
実行使用メモリ | 70,732 KB |
最終ジャッジ日時 | 2024-09-23 06:37:29 |
合計ジャッジ時間 | 3,790 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 37 ms
52,580 KB |
testcase_01 | AC | 37 ms
53,864 KB |
testcase_02 | WA | - |
testcase_03 | AC | 38 ms
52,932 KB |
testcase_04 | AC | 37 ms
53,504 KB |
testcase_05 | WA | - |
testcase_06 | AC | 37 ms
53,648 KB |
testcase_07 | AC | 37 ms
52,012 KB |
testcase_08 | AC | 37 ms
52,684 KB |
testcase_09 | AC | 38 ms
51,944 KB |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | AC | 88 ms
69,656 KB |
testcase_13 | AC | 91 ms
68,932 KB |
testcase_14 | AC | 84 ms
69,328 KB |
testcase_15 | AC | 88 ms
68,868 KB |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | AC | 38 ms
52,476 KB |
testcase_19 | AC | 38 ms
52,816 KB |
testcase_20 | AC | 37 ms
52,020 KB |
testcase_21 | AC | 38 ms
52,216 KB |
testcase_22 | AC | 38 ms
51,816 KB |
testcase_23 | AC | 38 ms
52,612 KB |
testcase_24 | AC | 38 ms
52,088 KB |
testcase_25 | WA | - |
testcase_26 | AC | 52 ms
63,376 KB |
testcase_27 | WA | - |
testcase_28 | AC | 52 ms
63,456 KB |
testcase_29 | AC | 53 ms
63,700 KB |
testcase_30 | WA | - |
testcase_31 | AC | 53 ms
64,120 KB |
testcase_32 | WA | - |
testcase_33 | WA | - |
testcase_34 | WA | - |
testcase_35 | WA | - |
testcase_36 | WA | - |
testcase_37 | WA | - |
testcase_38 | WA | - |
ソースコード
n,d=map(int,input().split()) food=[] for _ in range(n): p,q=map(int,input().split()) food.append([-p,q,q-p]) food.sort() las=food[-1][0] ans=-10**9+1 for i in range(n): for j in range(n): if i==j: continue T=food[i][2]+food[j][2] tmp=min(food[i][0],food[i][2]+food[j][0]) if T<0: if tmp==food[i][0]: if d%2==0: tmp=T*(d//2-1)+food[i][0] else: tmp=T*((d-1)//2)+las else: if d%2==0: tmp=T*(d//2-1)+food[i][2]+las else: tmp=T*((d-1)//2)+min(las,-food[j][1]) ans=max(ans,tmp) print(ans)