結果

問題 No.2623 Room Allocation
ユーザー PNJPNJ
提出日時 2024-02-09 21:54:50
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 172 ms / 2,000 ms
コード長 441 bytes
コンパイル時間 295 ms
コンパイル使用メモリ 82,152 KB
実行使用メモリ 80,200 KB
最終ジャッジ日時 2024-09-28 15:11:20
合計ジャッジ時間 4,725 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
53,408 KB
testcase_01 AC 31 ms
53,364 KB
testcase_02 AC 30 ms
52,460 KB
testcase_03 AC 34 ms
52,528 KB
testcase_04 AC 31 ms
52,952 KB
testcase_05 AC 32 ms
52,728 KB
testcase_06 AC 143 ms
77,296 KB
testcase_07 AC 146 ms
77,564 KB
testcase_08 AC 147 ms
77,612 KB
testcase_09 AC 141 ms
77,664 KB
testcase_10 AC 32 ms
52,312 KB
testcase_11 AC 33 ms
53,348 KB
testcase_12 AC 32 ms
54,168 KB
testcase_13 AC 32 ms
52,216 KB
testcase_14 AC 153 ms
79,568 KB
testcase_15 AC 130 ms
76,412 KB
testcase_16 AC 77 ms
76,100 KB
testcase_17 AC 53 ms
68,320 KB
testcase_18 AC 131 ms
76,328 KB
testcase_19 AC 127 ms
76,324 KB
testcase_20 AC 130 ms
76,196 KB
testcase_21 AC 131 ms
75,988 KB
testcase_22 AC 113 ms
76,256 KB
testcase_23 AC 97 ms
76,300 KB
testcase_24 AC 135 ms
76,316 KB
testcase_25 AC 121 ms
75,980 KB
testcase_26 AC 65 ms
76,108 KB
testcase_27 AC 172 ms
79,968 KB
testcase_28 AC 100 ms
77,472 KB
testcase_29 AC 82 ms
76,592 KB
testcase_30 AC 172 ms
80,200 KB
testcase_31 AC 67 ms
76,456 KB
testcase_32 AC 66 ms
76,268 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def Map():
  return list(map(int,input().split()))

N,X,Y = Map()
Z = X + Y
C = [0 for i in range(min(Z,N))]
ans = 0
for i in range(N):
  j = i % Z
  P,c = map(str,input().split())
  P = int(P)
  if c == 'A':
    C[j] += P
  else:
    C[j] -= P
    ans += P
C.sort()
y = len(C)
x = 0
while y > Y:
  ans += C.pop()
  y -= 1
  x += 1
while x < X and len(C):
  if C[-1] > 0:
    ans += C.pop()
    y -= 1
    x += 1
  else:
    break
print(ans)
0