結果

問題 No.2623 Room Allocation
ユーザー ShirotsumeShirotsume
提出日時 2024-02-11 00:53:18
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 390 ms / 2,000 ms
コード長 682 bytes
コンパイル時間 223 ms
コンパイル使用メモリ 82,092 KB
実行使用メモリ 106,512 KB
最終ジャッジ日時 2024-09-28 17:23:03
合計ジャッジ時間 4,953 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
55,620 KB
testcase_01 AC 41 ms
56,368 KB
testcase_02 AC 40 ms
56,380 KB
testcase_03 AC 41 ms
56,860 KB
testcase_04 AC 41 ms
55,704 KB
testcase_05 AC 41 ms
56,292 KB
testcase_06 AC 109 ms
83,264 KB
testcase_07 AC 105 ms
82,796 KB
testcase_08 AC 109 ms
82,824 KB
testcase_09 AC 107 ms
82,984 KB
testcase_10 AC 119 ms
106,512 KB
testcase_11 AC 119 ms
106,492 KB
testcase_12 AC 67 ms
83,080 KB
testcase_13 AC 69 ms
83,676 KB
testcase_14 AC 217 ms
103,908 KB
testcase_15 AC 93 ms
77,000 KB
testcase_16 AC 65 ms
76,916 KB
testcase_17 AC 49 ms
66,288 KB
testcase_18 AC 96 ms
77,180 KB
testcase_19 AC 92 ms
77,040 KB
testcase_20 AC 96 ms
76,984 KB
testcase_21 AC 96 ms
77,156 KB
testcase_22 AC 85 ms
77,108 KB
testcase_23 AC 74 ms
77,184 KB
testcase_24 AC 96 ms
76,812 KB
testcase_25 AC 90 ms
77,240 KB
testcase_26 AC 54 ms
74,952 KB
testcase_27 AC 390 ms
102,628 KB
testcase_28 AC 154 ms
88,352 KB
testcase_29 AC 120 ms
86,972 KB
testcase_30 AC 380 ms
100,348 KB
testcase_31 AC 78 ms
80,444 KB
testcase_32 AC 108 ms
94,480 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys, time, random
from collections import deque, Counter, defaultdict
input = lambda: sys.stdin.readline().rstrip()
ii = lambda: int(input())
mi = lambda: map(int, input().split())
li = lambda: list(mi())
inf = 2 ** 61 - 1
mod = 998244353

n, x, y = mi()
a = [0] * (x + y)
b = [0] * (x + y)
for i in range(n):
    p, c = input().split()
    p = int(p)
    if c == 'A':
        a[i % (x + y)] += p
    else:
        b[i % (x + y)] += p

c = [a[i] - b[i] for i in range(x + y)]
d = list(range(x + y))
d.sort(key = lambda x: c[x], reverse=True)

ans = 0
for i in range(x + y):
    if i < x:
        ans += max(0, a[d[i]])
    else:
        ans += max(0, b[d[i]])
print(ans)
    
0