結果

問題 No.2623 Room Allocation
ユーザー titiatitia
提出日時 2024-02-09 22:37:51
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 799 ms / 2,000 ms
コード長 442 bytes
コンパイル時間 205 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 95,616 KB
最終ジャッジ日時 2024-09-28 15:50:15
合計ジャッジ時間 10,659 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 27 ms
10,752 KB
testcase_01 AC 27 ms
10,752 KB
testcase_02 AC 29 ms
10,624 KB
testcase_03 AC 31 ms
10,752 KB
testcase_04 AC 28 ms
10,624 KB
testcase_05 AC 29 ms
10,752 KB
testcase_06 AC 328 ms
42,240 KB
testcase_07 AC 346 ms
41,472 KB
testcase_08 AC 330 ms
41,472 KB
testcase_09 AC 335 ms
41,472 KB
testcase_10 AC 386 ms
42,208 KB
testcase_11 AC 382 ms
42,112 KB
testcase_12 AC 201 ms
26,368 KB
testcase_13 AC 200 ms
26,496 KB
testcase_14 AC 748 ms
95,616 KB
testcase_15 AC 376 ms
50,176 KB
testcase_16 AC 90 ms
20,352 KB
testcase_17 AC 29 ms
11,136 KB
testcase_18 AC 367 ms
50,048 KB
testcase_19 AC 346 ms
47,360 KB
testcase_20 AC 368 ms
49,280 KB
testcase_21 AC 361 ms
50,048 KB
testcase_22 AC 251 ms
40,192 KB
testcase_23 AC 138 ms
27,392 KB
testcase_24 AC 361 ms
49,920 KB
testcase_25 AC 270 ms
42,496 KB
testcase_26 AC 48 ms
13,568 KB
testcase_27 AC 799 ms
88,880 KB
testcase_28 AC 379 ms
46,332 KB
testcase_29 AC 286 ms
35,516 KB
testcase_30 AC 747 ms
84,620 KB
testcase_31 AC 111 ms
18,688 KB
testcase_32 AC 303 ms
35,072 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

N,X,Y=map(int,input().split())
L=[input().split() for i in range(N)]
mod=X+Y

M=[]
ANS=0
for i in range(mod):
    A=0
    B=0

    for j in range(i,N,mod):
        if L[j][1]=="A":
            A+=int(L[j][0])
        else:
            B+=int(L[j][0])

    M.append((A,B))


M.sort(key=lambda x:x[1]-x[0])

for i in range(mod):
    if i<X:
        ANS+=M[i][0]
    else:
        ANS+=M[i][1]

print(ANS)
0