結果

問題 No.2623 Room Allocation
ユーザー ああいいああいい
提出日時 2024-02-11 15:32:39
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 714 ms / 2,000 ms
コード長 468 bytes
コンパイル時間 402 ms
コンパイル使用メモリ 82,528 KB
実行使用メモリ 151,476 KB
最終ジャッジ日時 2024-09-28 17:32:17
合計ジャッジ時間 7,382 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
52,192 KB
testcase_01 AC 36 ms
52,820 KB
testcase_02 AC 34 ms
53,904 KB
testcase_03 AC 34 ms
52,392 KB
testcase_04 AC 34 ms
52,884 KB
testcase_05 AC 33 ms
52,464 KB
testcase_06 AC 186 ms
92,752 KB
testcase_07 AC 180 ms
93,128 KB
testcase_08 AC 185 ms
92,668 KB
testcase_09 AC 188 ms
92,748 KB
testcase_10 AC 195 ms
135,344 KB
testcase_11 AC 194 ms
135,564 KB
testcase_12 AC 124 ms
112,744 KB
testcase_13 AC 120 ms
112,680 KB
testcase_14 AC 452 ms
151,476 KB
testcase_15 AC 142 ms
76,124 KB
testcase_16 AC 81 ms
76,108 KB
testcase_17 AC 56 ms
68,252 KB
testcase_18 AC 142 ms
76,216 KB
testcase_19 AC 134 ms
76,444 KB
testcase_20 AC 146 ms
76,404 KB
testcase_21 AC 144 ms
76,608 KB
testcase_22 AC 122 ms
76,096 KB
testcase_23 AC 96 ms
76,184 KB
testcase_24 AC 148 ms
76,600 KB
testcase_25 AC 128 ms
76,660 KB
testcase_26 AC 69 ms
76,096 KB
testcase_27 AC 714 ms
133,356 KB
testcase_28 AC 320 ms
117,084 KB
testcase_29 AC 219 ms
113,672 KB
testcase_30 AC 690 ms
123,088 KB
testcase_31 AC 112 ms
88,296 KB
testcase_32 AC 189 ms
128,352 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,X,Y = map(int,input().split())
n = X + Y
dat = [[0] * 2 for _ in range(n)]
A = []
B = []
for _ in range(N):
    P,c = input().split()
    P = int(P)
    if c == "A":
        c = 0
    else:
        c = 1
    dat[_ % n][c] += P
l = []
for i in range(n):
    l.append((dat[i][0] - dat[i][1],i))
l.sort(reverse = True)
ans = 0
for i in range(n):
    if i < X:
        u,j = l[i]
        ans += dat[j][0]
    else:
        u,j = l[i]
        ans += dat[j][1]
print(ans)
0