結果

問題 No.2623 Room Allocation
ユーザー timitimi
提出日時 2024-02-09 21:42:04
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 731 ms / 2,000 ms
コード長 353 bytes
コンパイル時間 154 ms
コンパイル使用メモリ 82,316 KB
実行使用メモリ 154,516 KB
最終ジャッジ日時 2024-09-28 14:57:07
合計ジャッジ時間 7,190 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
52,468 KB
testcase_01 AC 34 ms
53,140 KB
testcase_02 AC 33 ms
53,780 KB
testcase_03 AC 33 ms
53,872 KB
testcase_04 AC 33 ms
53,412 KB
testcase_05 AC 34 ms
52,340 KB
testcase_06 AC 189 ms
95,704 KB
testcase_07 AC 190 ms
95,344 KB
testcase_08 AC 189 ms
95,708 KB
testcase_09 AC 186 ms
95,376 KB
testcase_10 AC 201 ms
137,416 KB
testcase_11 AC 196 ms
137,528 KB
testcase_12 AC 124 ms
113,900 KB
testcase_13 AC 124 ms
114,032 KB
testcase_14 AC 423 ms
154,516 KB
testcase_15 AC 142 ms
76,248 KB
testcase_16 AC 78 ms
76,180 KB
testcase_17 AC 56 ms
67,784 KB
testcase_18 AC 145 ms
76,136 KB
testcase_19 AC 142 ms
76,048 KB
testcase_20 AC 138 ms
76,188 KB
testcase_21 AC 149 ms
75,988 KB
testcase_22 AC 127 ms
76,448 KB
testcase_23 AC 101 ms
76,120 KB
testcase_24 AC 151 ms
76,144 KB
testcase_25 AC 128 ms
75,980 KB
testcase_26 AC 70 ms
76,152 KB
testcase_27 AC 731 ms
133,508 KB
testcase_28 AC 320 ms
118,512 KB
testcase_29 AC 222 ms
115,092 KB
testcase_30 AC 722 ms
120,616 KB
testcase_31 AC 112 ms
88,848 KB
testcase_32 AC 193 ms
130,352 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,X,Y=map(int, input().split())

D=[[0,0] for i in range(X+Y)]
for i in range(N):
  c,p=input().split()
  if p=='A':
    p=0
  else:
    p=1
  c=int(c)
  D[i%(X+Y)][p]+=c 

E=[]
for i in range(len(D)):
  x,y=D[i]
  E.append((x-y,i))
E=sorted(E)[::-1]
F=[1]*(X+Y)
for i in range(X):
  F[E[i][1]]=0
ans=0
for i in range(X+Y):
  ans+=D[i][F[i]] 
print(ans)
0