結果

問題 No.2623 Room Allocation
ユーザー detteiuudetteiuu
提出日時 2024-08-17 14:59:47
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 514 ms / 2,000 ms
コード長 422 bytes
コンパイル時間 442 ms
コンパイル使用メモリ 82,036 KB
実行使用メモリ 150,868 KB
最終ジャッジ日時 2024-08-17 14:59:57
合計ジャッジ時間 8,519 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
53,472 KB
testcase_01 AC 37 ms
53,028 KB
testcase_02 AC 37 ms
52,212 KB
testcase_03 AC 37 ms
53,068 KB
testcase_04 AC 37 ms
52,816 KB
testcase_05 AC 37 ms
52,216 KB
testcase_06 AC 242 ms
117,168 KB
testcase_07 AC 248 ms
117,632 KB
testcase_08 AC 243 ms
117,864 KB
testcase_09 AC 240 ms
117,764 KB
testcase_10 AC 108 ms
100,976 KB
testcase_11 AC 108 ms
101,044 KB
testcase_12 AC 90 ms
95,980 KB
testcase_13 AC 94 ms
97,520 KB
testcase_14 AC 383 ms
150,868 KB
testcase_15 AC 225 ms
107,724 KB
testcase_16 AC 105 ms
83,428 KB
testcase_17 AC 64 ms
68,408 KB
testcase_18 AC 225 ms
107,804 KB
testcase_19 AC 212 ms
105,972 KB
testcase_20 AC 246 ms
107,716 KB
testcase_21 AC 226 ms
107,728 KB
testcase_22 AC 183 ms
98,492 KB
testcase_23 AC 131 ms
88,112 KB
testcase_24 AC 228 ms
108,044 KB
testcase_25 AC 196 ms
101,720 KB
testcase_26 AC 79 ms
78,052 KB
testcase_27 AC 514 ms
145,760 KB
testcase_28 AC 232 ms
108,124 KB
testcase_29 AC 149 ms
94,600 KB
testcase_30 AC 477 ms
136,856 KB
testcase_31 AC 92 ms
81,320 KB
testcase_32 AC 143 ms
107,228 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N, X, Y = map(int, input().split())
customer = [list(input().split()) for _ in range(N)]

groups = [[0]*2 for _ in range(X+Y)]
for i, (P, C) in enumerate(customer):
    P = int(P)
    if C == "A":
        groups[i%(X+Y)][0] += P
    else:
        groups[i%(X+Y)][1] += P
sumA = 0
for i in range(X+Y):
    sumA += groups[i][0]
    groups[i] = groups[i][1]-groups[i][0]
groups.sort(reverse=True)

print(sumA+sum(groups[:Y]))
0