結果

問題 No.2623 Room Allocation
ユーザー ゼットゼット
提出日時 2024-02-09 21:53:20
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 183 ms / 2,000 ms
コード長 653 bytes
コンパイル時間 181 ms
コンパイル使用メモリ 82,500 KB
実行使用メモリ 90,868 KB
最終ジャッジ日時 2024-09-28 15:09:18
合計ジャッジ時間 4,933 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
52,600 KB
testcase_01 AC 35 ms
52,800 KB
testcase_02 AC 32 ms
53,112 KB
testcase_03 AC 34 ms
53,712 KB
testcase_04 AC 34 ms
52,548 KB
testcase_05 AC 36 ms
53,496 KB
testcase_06 AC 177 ms
90,856 KB
testcase_07 AC 176 ms
90,868 KB
testcase_08 AC 172 ms
90,600 KB
testcase_09 AC 177 ms
90,736 KB
testcase_10 AC 37 ms
59,068 KB
testcase_11 AC 35 ms
58,552 KB
testcase_12 AC 36 ms
55,932 KB
testcase_13 AC 36 ms
55,800 KB
testcase_14 AC 157 ms
89,980 KB
testcase_15 AC 148 ms
83,212 KB
testcase_16 AC 79 ms
77,224 KB
testcase_17 AC 56 ms
68,268 KB
testcase_18 AC 146 ms
82,960 KB
testcase_19 AC 139 ms
82,820 KB
testcase_20 AC 145 ms
82,828 KB
testcase_21 AC 148 ms
82,972 KB
testcase_22 AC 123 ms
81,164 KB
testcase_23 AC 96 ms
78,804 KB
testcase_24 AC 151 ms
82,948 KB
testcase_25 AC 132 ms
81,092 KB
testcase_26 AC 67 ms
75,992 KB
testcase_27 AC 183 ms
88,408 KB
testcase_28 AC 106 ms
82,072 KB
testcase_29 AC 83 ms
79,772 KB
testcase_30 AC 183 ms
87,680 KB
testcase_31 AC 71 ms
77,136 KB
testcase_32 AC 69 ms
80,728 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,x,y=map(int,input().split())
v1=[0]*(x+y)
v2=[0]*(x+y)
L1=[]
L2=[]
for i in range(N):
  p,c=input().split()
  p=int(p)
  if c=='A':
    L1.append(p)
    v1[i%(x+y)]+=p
  else:
    L2.append(p)
    v2[i%(x+y)]+=p
if N>x+y:
  L=[]
  for i in range(x+y):
    L.append((v1[i]-v2[i],v1[i]))
  result=0
  L.sort(reverse=True)
  for i in range(x+y):
    z,w=L[i][:]
    if i<x:
      result+=w
    else:
      result+=w-z
  print(result)
else:
  L1.sort(reverse=True)
  L2.sort(reverse=True)
  result=0
  for i in range(len(L1)):
    if i>=x:
      break
    result+=L1[i]
  for i in range(len(L2)):
    if i>=y:
      break
    result+=L2[i]
  print(result)
0