結果

問題 No.2623 Room Allocation
ユーザー PNJPNJ
提出日時 2024-02-09 21:53:04
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 542 bytes
コンパイル時間 225 ms
コンパイル使用メモリ 82,372 KB
実行使用メモリ 80,408 KB
最終ジャッジ日時 2024-09-28 15:08:51
合計ジャッジ時間 4,741 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
54,708 KB
testcase_01 AC 37 ms
54,304 KB
testcase_02 AC 38 ms
55,176 KB
testcase_03 AC 37 ms
54,428 KB
testcase_04 AC 40 ms
55,184 KB
testcase_05 AC 40 ms
54,716 KB
testcase_06 AC 151 ms
79,224 KB
testcase_07 WA -
testcase_08 AC 162 ms
79,656 KB
testcase_09 WA -
testcase_10 AC 37 ms
54,312 KB
testcase_11 AC 38 ms
54,132 KB
testcase_12 AC 37 ms
53,976 KB
testcase_13 AC 35 ms
54,376 KB
testcase_14 AC 158 ms
79,980 KB
testcase_15 AC 139 ms
78,372 KB
testcase_16 WA -
testcase_17 AC 58 ms
71,076 KB
testcase_18 AC 144 ms
78,216 KB
testcase_19 WA -
testcase_20 WA -
testcase_21 AC 139 ms
77,960 KB
testcase_22 WA -
testcase_23 WA -
testcase_24 AC 134 ms
78,240 KB
testcase_25 WA -
testcase_26 AC 66 ms
76,624 KB
testcase_27 AC 187 ms
80,232 KB
testcase_28 AC 101 ms
77,716 KB
testcase_29 AC 81 ms
76,792 KB
testcase_30 AC 172 ms
80,408 KB
testcase_31 AC 68 ms
76,928 KB
testcase_32 AC 69 ms
76,948 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

N,X,Y = Map()
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:
  y = N
  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