結果

問題 No.2623 Room Allocation
ユーザー PNJPNJ
提出日時 2024-02-09 21:45:57
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 496 bytes
コンパイル時間 378 ms
コンパイル使用メモリ 82,352 KB
実行使用メモリ 80,316 KB
最終ジャッジ日時 2024-09-28 15:00:06
合計ジャッジ時間 4,734 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
54,404 KB
testcase_01 AC 36 ms
53,944 KB
testcase_02 AC 35 ms
54,932 KB
testcase_03 AC 37 ms
54,508 KB
testcase_04 AC 36 ms
55,304 KB
testcase_05 AC 37 ms
54,752 KB
testcase_06 AC 160 ms
79,276 KB
testcase_07 WA -
testcase_08 AC 160 ms
79,352 KB
testcase_09 WA -
testcase_10 AC 39 ms
54,004 KB
testcase_11 AC 37 ms
54,576 KB
testcase_12 AC 37 ms
54,520 KB
testcase_13 WA -
testcase_14 AC 165 ms
79,480 KB
testcase_15 AC 146 ms
78,304 KB
testcase_16 WA -
testcase_17 AC 60 ms
70,712 KB
testcase_18 AC 147 ms
78,168 KB
testcase_19 WA -
testcase_20 WA -
testcase_21 AC 149 ms
77,960 KB
testcase_22 WA -
testcase_23 WA -
testcase_24 AC 150 ms
78,384 KB
testcase_25 WA -
testcase_26 AC 74 ms
76,668 KB
testcase_27 AC 184 ms
80,088 KB
testcase_28 AC 106 ms
78,128 KB
testcase_29 AC 84 ms
76,716 KB
testcase_30 AC 189 ms
80,316 KB
testcase_31 AC 74 ms
76,668 KB
testcase_32 AC 73 ms
76,500 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque
def Map():
  return list(map(int,input().split()))

N,X,Y = Map()
x = 0
y = 0
Z = X + Y
C = [0 for i in range(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()
if Z <= N:
  for i in range(X):
    ans += C.pop()
else:
  while len(C) > Y:
    c = C.pop()
    ans += c
  while len(C):
    if C[-1] > 0:
      ans += C.pop()
    else:
      break
print(ans)
0