結果

問題 No.2623 Room Allocation
ユーザー lloyzlloyz
提出日時 2024-02-12 19:08:56
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 764 ms / 2,000 ms
コード長 439 bytes
コンパイル時間 292 ms
コンパイル使用メモリ 82,352 KB
実行使用メモリ 148,028 KB
最終ジャッジ日時 2024-09-28 18:10:52
合計ジャッジ時間 7,269 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
52,196 KB
testcase_01 AC 31 ms
53,148 KB
testcase_02 AC 34 ms
53,136 KB
testcase_03 AC 30 ms
52,964 KB
testcase_04 AC 30 ms
53,440 KB
testcase_05 AC 30 ms
52,252 KB
testcase_06 AC 178 ms
89,812 KB
testcase_07 AC 176 ms
89,708 KB
testcase_08 AC 179 ms
89,744 KB
testcase_09 AC 183 ms
89,612 KB
testcase_10 AC 200 ms
145,200 KB
testcase_11 AC 194 ms
145,132 KB
testcase_12 AC 119 ms
110,672 KB
testcase_13 AC 117 ms
110,524 KB
testcase_14 AC 439 ms
148,028 KB
testcase_15 AC 132 ms
76,184 KB
testcase_16 AC 78 ms
76,188 KB
testcase_17 AC 53 ms
68,256 KB
testcase_18 AC 143 ms
76,448 KB
testcase_19 AC 132 ms
76,192 KB
testcase_20 AC 132 ms
76,604 KB
testcase_21 AC 134 ms
76,180 KB
testcase_22 AC 115 ms
76,416 KB
testcase_23 AC 90 ms
76,504 KB
testcase_24 AC 133 ms
76,456 KB
testcase_25 AC 122 ms
76,480 KB
testcase_26 AC 65 ms
76,320 KB
testcase_27 AC 764 ms
131,068 KB
testcase_28 AC 319 ms
114,524 KB
testcase_29 AC 217 ms
111,968 KB
testcase_30 AC 743 ms
122,836 KB
testcase_31 AC 107 ms
88,312 KB
testcase_32 AC 193 ms
124,396 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, x, y = map(int, input().split())
xy = x + y
C = [[0, 0] for _ in range(xy)]
for i in range(n):
    p, c = input().split()
    p = int(p)
    if c == 'A':
        j = 0
    else:
        j = 1
    C[i % xy][j] += p
D = [(C[i][0] - C[i][1], i) for i in range(xy)]
D.sort(key=lambda x: (x[0], x[1]), reverse=True)
ans = 0
for i in range(xy):
    j = D[i][1]
    if i < x:
        ans += C[j][0]
    else:
        ans += C[j][1]
print(ans)
0