結果

問題 No.1430 Coup de Coupon
ユーザー gorugo30gorugo30
提出日時 2021-03-14 14:41:44
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 518 bytes
コンパイル時間 373 ms
コンパイル使用メモリ 82,360 KB
実行使用メモリ 78,172 KB
最終ジャッジ日時 2024-11-06 04:38:49
合計ジャッジ時間 9,806 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
53,900 KB
testcase_01 AC 38 ms
52,320 KB
testcase_02 AC 38 ms
53,352 KB
testcase_03 AC 63 ms
69,436 KB
testcase_04 AC 71 ms
74,376 KB
testcase_05 AC 72 ms
74,500 KB
testcase_06 AC 389 ms
76,976 KB
testcase_07 AC 446 ms
76,844 KB
testcase_08 AC 430 ms
76,912 KB
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 397 ms
77,888 KB
testcase_21 WA -
testcase_22 WA -
testcase_23 AC 49 ms
62,044 KB
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

N, C = map(int, input().split())
P = [int(input()) for i in range(N)]
Cs = [list(map(int, input().split())) for i in range(C)]
P.sort(reverse = True)
ans = sum(P)
used = [0] * C
for i in range(N):
    maxd = 0
    use = -1
    for j in range(C):
        if used[j]:
            continue
        if Cs[j][0] == 1:
            d = P[i] - max(P[i] - Cs[j][1], 0)
        else:
            d = P[i] * Cs[j][1] //100
        if d > maxd:
            use = j
            maxd = d
    used[use] = 1
    ans -= maxd
print(ans)
0