結果

問題 No.2623 Room Allocation
ユーザー tipstar0125tipstar0125
提出日時 2024-02-14 17:09:53
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 798 ms / 2,000 ms
コード長 330 bytes
コンパイル時間 695 ms
コンパイル使用メモリ 82,400 KB
実行使用メモリ 116,232 KB
最終ジャッジ日時 2024-09-28 18:56:43
合計ジャッジ時間 7,991 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
52,748 KB
testcase_01 AC 35 ms
52,780 KB
testcase_02 AC 36 ms
52,324 KB
testcase_03 AC 35 ms
53,036 KB
testcase_04 AC 38 ms
53,412 KB
testcase_05 AC 37 ms
53,240 KB
testcase_06 AC 204 ms
86,508 KB
testcase_07 AC 220 ms
86,856 KB
testcase_08 AC 205 ms
86,436 KB
testcase_09 AC 214 ms
86,912 KB
testcase_10 AC 197 ms
113,724 KB
testcase_11 AC 198 ms
113,720 KB
testcase_12 AC 119 ms
94,740 KB
testcase_13 AC 124 ms
95,176 KB
testcase_14 AC 411 ms
116,232 KB
testcase_15 AC 148 ms
76,128 KB
testcase_16 AC 86 ms
76,080 KB
testcase_17 AC 59 ms
68,272 KB
testcase_18 AC 150 ms
76,196 KB
testcase_19 AC 146 ms
76,268 KB
testcase_20 AC 148 ms
76,020 KB
testcase_21 AC 147 ms
76,364 KB
testcase_22 AC 129 ms
76,144 KB
testcase_23 AC 103 ms
76,148 KB
testcase_24 AC 151 ms
76,448 KB
testcase_25 AC 134 ms
76,244 KB
testcase_26 AC 73 ms
76,332 KB
testcase_27 AC 798 ms
107,820 KB
testcase_28 AC 326 ms
97,368 KB
testcase_29 AC 229 ms
95,876 KB
testcase_30 AC 761 ms
102,828 KB
testcase_31 AC 117 ms
83,572 KB
testcase_32 AC 190 ms
102,960 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,X,Y=map(int,input().split())
g=[[0 for _ in range(3)] for _ in range(X+Y)]
for i in range(N):
    p,ci=input().split()
    if ci=="A":g[i%(X+Y)][1]+=int(p)
    else:g[i%(X+Y)][2]+=int(p)
    g[i%(X+Y)][0]=g[i%(X+Y)][2]-g[i%(X+Y)][1]
g.sort()

ans=0
for i in range(X+Y):
    if i<X:ans+=g[i][1]
    else:ans+=g[i][2]
print(ans)

0