結果

問題 No.2623 Room Allocation
ユーザー 👑 rin204rin204
提出日時 2024-02-10 00:52:34
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 180 ms / 2,000 ms
コード長 266 bytes
コンパイル時間 251 ms
コンパイル使用メモリ 82,452 KB
実行使用メモリ 82,368 KB
最終ジャッジ日時 2024-09-28 16:47:59
合計ジャッジ時間 4,687 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
53,068 KB
testcase_01 AC 33 ms
52,056 KB
testcase_02 AC 35 ms
52,272 KB
testcase_03 AC 33 ms
53,108 KB
testcase_04 AC 35 ms
52,216 KB
testcase_05 AC 34 ms
53,688 KB
testcase_06 AC 149 ms
77,908 KB
testcase_07 AC 150 ms
77,456 KB
testcase_08 AC 150 ms
77,704 KB
testcase_09 AC 152 ms
77,760 KB
testcase_10 AC 40 ms
62,396 KB
testcase_11 AC 39 ms
62,420 KB
testcase_12 AC 35 ms
54,536 KB
testcase_13 AC 39 ms
61,000 KB
testcase_14 AC 155 ms
82,368 KB
testcase_15 AC 144 ms
76,456 KB
testcase_16 AC 80 ms
76,116 KB
testcase_17 AC 55 ms
69,268 KB
testcase_18 AC 141 ms
76,320 KB
testcase_19 AC 137 ms
76,188 KB
testcase_20 AC 142 ms
76,392 KB
testcase_21 AC 138 ms
76,168 KB
testcase_22 AC 121 ms
76,312 KB
testcase_23 AC 96 ms
75,932 KB
testcase_24 AC 139 ms
75,860 KB
testcase_25 AC 123 ms
76,136 KB
testcase_26 AC 68 ms
76,320 KB
testcase_27 AC 180 ms
82,116 KB
testcase_28 AC 101 ms
78,888 KB
testcase_29 AC 84 ms
78,864 KB
testcase_30 AC 177 ms
80,704 KB
testcase_31 AC 61 ms
75,144 KB
testcase_32 AC 66 ms
78,136 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, x, y = map(int, input().split())
z = x + y
C = [0] * z
ans = 0
for i in range(n):
    p, c = input().split()
    p = int(p)
    if c == "A":
        ans += p
        C[i % z] -= p
    else:
        C[i % z] += p

C.sort(reverse=True)
ans += sum(C[:y])
print(ans)
0