結果

問題 No.2623 Room Allocation
ユーザー rlangevinrlangevin
提出日時 2024-02-09 21:37:22
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 671 ms / 2,000 ms
コード長 419 bytes
コンパイル時間 298 ms
コンパイル使用メモリ 82,296 KB
実行使用メモリ 117,200 KB
最終ジャッジ日時 2024-09-28 14:49:33
合計ジャッジ時間 6,180 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
52,680 KB
testcase_01 AC 33 ms
52,400 KB
testcase_02 AC 32 ms
52,996 KB
testcase_03 AC 34 ms
52,872 KB
testcase_04 AC 33 ms
52,212 KB
testcase_05 AC 33 ms
52,280 KB
testcase_06 AC 106 ms
86,504 KB
testcase_07 AC 114 ms
85,944 KB
testcase_08 AC 111 ms
85,912 KB
testcase_09 AC 107 ms
85,840 KB
testcase_10 AC 149 ms
114,692 KB
testcase_11 AC 153 ms
114,720 KB
testcase_12 AC 96 ms
94,616 KB
testcase_13 AC 91 ms
94,672 KB
testcase_14 AC 322 ms
117,200 KB
testcase_15 AC 83 ms
75,580 KB
testcase_16 AC 56 ms
75,580 KB
testcase_17 AC 39 ms
61,548 KB
testcase_18 AC 83 ms
75,788 KB
testcase_19 AC 81 ms
75,536 KB
testcase_20 AC 81 ms
75,504 KB
testcase_21 AC 82 ms
75,632 KB
testcase_22 AC 75 ms
75,596 KB
testcase_23 AC 65 ms
75,592 KB
testcase_24 AC 84 ms
75,424 KB
testcase_25 AC 78 ms
75,776 KB
testcase_26 AC 46 ms
69,052 KB
testcase_27 AC 671 ms
108,780 KB
testcase_28 AC 258 ms
98,576 KB
testcase_29 AC 163 ms
96,584 KB
testcase_30 AC 631 ms
103,516 KB
testcase_31 AC 85 ms
82,456 KB
testcase_32 AC 137 ms
103,172 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

N, X, Y = map(int, input().split())
M = X + Y
D = [[0, 0, 0] for _ in range(M)]
for i in range(N):
    P, c = input().split()
    P = int(P)
    if c == "A":
        D[i%M][1] += P
    else:
        D[i%M][2] += P
        
ans = 0
for i in range(M):
    ans += D[i][2]
    D[i][0] = D[i][1] - D[i][2]
    
D.sort(reverse=True)
for i in range(X):
    ans += D[i][0]
    
print(ans)
0