結果
問題 | No.1715 Dinner 2 |
ユーザー | lloyz |
提出日時 | 2021-11-10 23:12:37 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
RE
|
実行時間 | - |
コード長 | 319 bytes |
コンパイル時間 | 280 ms |
コンパイル使用メモリ | 12,544 KB |
実行使用メモリ | 11,008 KB |
最終ジャッジ日時 | 2024-11-21 16:15:20 |
合計ジャッジ時間 | 2,798 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 32 ms
10,752 KB |
testcase_01 | AC | 34 ms
10,752 KB |
testcase_02 | AC | 30 ms
10,752 KB |
testcase_03 | RE | - |
testcase_04 | RE | - |
testcase_05 | RE | - |
testcase_06 | RE | - |
testcase_07 | WA | - |
testcase_08 | RE | - |
testcase_09 | WA | - |
testcase_10 | RE | - |
testcase_11 | RE | - |
testcase_12 | AC | 35 ms
10,880 KB |
testcase_13 | AC | 35 ms
11,008 KB |
testcase_14 | AC | 34 ms
10,752 KB |
testcase_15 | AC | 35 ms
10,880 KB |
testcase_16 | RE | - |
testcase_17 | RE | - |
testcase_18 | RE | - |
testcase_19 | RE | - |
testcase_20 | RE | - |
testcase_21 | RE | - |
testcase_22 | RE | - |
testcase_23 | RE | - |
testcase_24 | RE | - |
testcase_25 | RE | - |
testcase_26 | RE | - |
testcase_27 | RE | - |
testcase_28 | RE | - |
testcase_29 | RE | - |
testcase_30 | RE | - |
testcase_31 | RE | - |
testcase_32 | WA | - |
testcase_33 | AC | 37 ms
11,008 KB |
testcase_34 | WA | - |
testcase_35 | AC | 36 ms
11,008 KB |
testcase_36 | WA | - |
testcase_37 | WA | - |
testcase_38 | RE | - |
ソースコード
n, d = map(int, input().split()) L = [] for _ in range(n): p, q = map(int, input().split()) L.append((p, q, -p + q)) L.sort(key=lambda x: (x[0], -x[2])) ans = 10**10 curr = 0 for i in range(d): curr -= L[i][0] ans = min(ans, curr) curr += L[i][1] ans = min(ans, curr) print(ans)