結果

問題 No.1715 Dinner 2
ユーザー ShirotsumeShirotsume
提出日時 2021-10-22 21:41:59
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 259 bytes
コンパイル時間 290 ms
コンパイル使用メモリ 82,180 KB
実行使用メモリ 64,292 KB
最終ジャッジ日時 2024-09-23 05:01:30
合計ジャッジ時間 2,944 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,300 KB
testcase_01 AC 38 ms
52,148 KB
testcase_02 AC 37 ms
52,160 KB
testcase_03 AC 39 ms
53,096 KB
testcase_04 AC 36 ms
51,892 KB
testcase_05 WA -
testcase_06 AC 37 ms
51,868 KB
testcase_07 AC 37 ms
52,692 KB
testcase_08 AC 37 ms
52,552 KB
testcase_09 AC 37 ms
52,416 KB
testcase_10 WA -
testcase_11 AC 49 ms
56,420 KB
testcase_12 AC 52 ms
62,460 KB
testcase_13 AC 53 ms
62,708 KB
testcase_14 AC 52 ms
62,316 KB
testcase_15 AC 53 ms
62,580 KB
testcase_16 AC 47 ms
56,784 KB
testcase_17 AC 46 ms
55,604 KB
testcase_18 WA -
testcase_19 AC 37 ms
52,504 KB
testcase_20 AC 39 ms
52,284 KB
testcase_21 AC 38 ms
52,900 KB
testcase_22 AC 37 ms
52,916 KB
testcase_23 AC 38 ms
52,528 KB
testcase_24 AC 38 ms
52,216 KB
testcase_25 AC 39 ms
53,236 KB
testcase_26 AC 38 ms
52,616 KB
testcase_27 AC 39 ms
52,580 KB
testcase_28 AC 39 ms
53,288 KB
testcase_29 AC 39 ms
52,644 KB
testcase_30 AC 39 ms
53,152 KB
testcase_31 AC 39 ms
52,760 KB
testcase_32 AC 55 ms
63,404 KB
testcase_33 AC 55 ms
64,292 KB
testcase_34 AC 54 ms
63,616 KB
testcase_35 AC 55 ms
63,664 KB
testcase_36 WA -
testcase_37 WA -
testcase_38 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

n, d = map(int,input().split())
pq = []
for _ in range(n):
    p, q = map(int,input().split())
    pq.append((-p, q))

pq.sort(reverse = True)
ans = 0
now = 0
for i in range(d):
    now += pq[i % 2][0]
    ans = min(ans,now)
    now += pq[i % 2][1]
print(ans)
0