結果
問題 | No.2852 Yakitori Optimization Problem |
ユーザー | stunniita |
提出日時 | 2024-08-25 16:22:49 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 620 bytes |
コンパイル時間 | 154 ms |
コンパイル使用メモリ | 12,928 KB |
実行使用メモリ | 89,972 KB |
最終ジャッジ日時 | 2024-08-25 16:23:11 |
合計ジャッジ時間 | 12,610 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
ソースコード
N, K = map(int, input().split()) A = list(map(int, input().split())) B = list(map(int, input().split())) C = list(map(int, input().split())) SIO = [A[i] + B[i] for i in range(N)] TARE = [A[i] + C[i] for i in range(N)] print(f"{SIO=}") print(f"{TARE=}") diff_indices = sorted([(SIO[i] - TARE[i], i) for i in range(N)], reverse=True, key=lambda x: x[0]) print(f"{diff_indices=}") # Cの合計値 total_sum = 0 # Aを選ぶべきK個を決定 for i in range(K): total_sum += SIO[diff_indices[i][1]] # 残りのN-K個はBを選ぶ for i in range(K, N): total_sum += TARE[diff_indices[i][1]] print(total_sum)