結果

問題 No.2623 Room Allocation
ユーザー ニックネームニックネーム
提出日時 2024-02-09 21:41:41
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,318 ms / 2,000 ms
コード長 328 bytes
コンパイル時間 133 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 65,616 KB
最終ジャッジ日時 2024-09-28 14:56:56
合計ジャッジ時間 14,980 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 27 ms
10,752 KB
testcase_01 AC 29 ms
10,752 KB
testcase_02 AC 30 ms
10,752 KB
testcase_03 AC 28 ms
10,752 KB
testcase_04 AC 27 ms
10,752 KB
testcase_05 AC 28 ms
10,752 KB
testcase_06 AC 638 ms
22,784 KB
testcase_07 AC 625 ms
22,784 KB
testcase_08 AC 631 ms
22,784 KB
testcase_09 AC 644 ms
22,784 KB
testcase_10 AC 332 ms
53,120 KB
testcase_11 AC 305 ms
53,120 KB
testcase_12 AC 153 ms
32,640 KB
testcase_13 AC 155 ms
32,768 KB
testcase_14 AC 958 ms
65,616 KB
testcase_15 AC 591 ms
10,752 KB
testcase_16 AC 165 ms
10,880 KB
testcase_17 AC 32 ms
10,752 KB
testcase_18 AC 588 ms
10,752 KB
testcase_19 AC 558 ms
10,752 KB
testcase_20 AC 574 ms
10,880 KB
testcase_21 AC 619 ms
10,880 KB
testcase_22 AC 446 ms
10,752 KB
testcase_23 AC 275 ms
10,752 KB
testcase_24 AC 607 ms
10,752 KB
testcase_25 AC 495 ms
10,880 KB
testcase_26 AC 69 ms
10,880 KB
testcase_27 AC 1,318 ms
55,452 KB
testcase_28 AC 483 ms
38,168 KB
testcase_29 AC 314 ms
34,684 KB
testcase_30 AC 1,282 ms
50,176 KB
testcase_31 AC 104 ms
18,816 KB
testcase_32 AC 258 ms
40,576 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,x,y = map(int,input().split())
z = x+y; dab = [[0,0,0] for _ in range(z)]
for i in range(n):
    p,c = input().split()
    p = int(p)
    if c=="A": dab[i%z][0] -= p; dab[i%z][1] += p
    if c=="B": dab[i%z][0] += p; dab[i%z][2] += p
dab.sort(); ans = 0
for d,a,b in dab[:x]: ans += a
for d,a,b in dab[x:]: ans += b
print(ans)
0