結果

問題 No.2623 Room Allocation
ユーザー sasa8uyauyasasa8uyauya
提出日時 2024-02-09 21:55:48
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 236 ms / 2,000 ms
コード長 288 bytes
コンパイル時間 128 ms
コンパイル使用メモリ 82,248 KB
実行使用メモリ 133,404 KB
最終ジャッジ日時 2024-09-28 15:12:02
合計ジャッジ時間 5,148 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,392 KB
testcase_01 AC 31 ms
52,392 KB
testcase_02 AC 29 ms
53,208 KB
testcase_03 AC 31 ms
52,796 KB
testcase_04 AC 33 ms
53,200 KB
testcase_05 AC 32 ms
53,476 KB
testcase_06 AC 177 ms
92,788 KB
testcase_07 AC 170 ms
92,920 KB
testcase_08 AC 169 ms
92,916 KB
testcase_09 AC 168 ms
92,652 KB
testcase_10 AC 103 ms
116,432 KB
testcase_11 AC 109 ms
116,288 KB
testcase_12 AC 76 ms
97,436 KB
testcase_13 AC 74 ms
95,740 KB
testcase_14 AC 236 ms
133,404 KB
testcase_15 AC 154 ms
91,384 KB
testcase_16 AC 77 ms
79,268 KB
testcase_17 AC 53 ms
70,276 KB
testcase_18 AC 150 ms
91,492 KB
testcase_19 AC 147 ms
87,912 KB
testcase_20 AC 149 ms
91,112 KB
testcase_21 AC 155 ms
91,516 KB
testcase_22 AC 125 ms
85,180 KB
testcase_23 AC 100 ms
82,284 KB
testcase_24 AC 150 ms
91,368 KB
testcase_25 AC 134 ms
87,248 KB
testcase_26 AC 66 ms
76,492 KB
testcase_27 AC 235 ms
124,012 KB
testcase_28 AC 143 ms
102,788 KB
testcase_29 AC 116 ms
98,148 KB
testcase_30 AC 229 ms
118,260 KB
testcase_31 AC 72 ms
77,984 KB
testcase_32 AC 114 ms
104,660 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,x,y=map(int,input().split())
q1=[]
q2=[]
g=0
for i in range(n):
  p,c=input().split()
  p=int(p)
  q1+=[int(c=="B")]
  q2+=[p]
q=[[0]*2 for i in range(x+y)]
for i in range(n):
  q[i%(x+y)][q1[i]]+=q2[i]
g=sum(b for a,b in q)
q=[a-b for a,b in q]
q.sort()
q.reverse()
print(g+sum(q[:x]))
0