結果

問題 No.2623 Room Allocation
ユーザー fiblonariafiblonaria
提出日時 2024-02-10 05:59:43
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 193 ms / 2,000 ms
コード長 282 bytes
コンパイル時間 260 ms
コンパイル使用メモリ 82,456 KB
実行使用メモリ 87,284 KB
最終ジャッジ日時 2024-09-28 17:00:29
合計ジャッジ時間 4,936 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,140 KB
testcase_01 AC 37 ms
52,872 KB
testcase_02 AC 34 ms
53,056 KB
testcase_03 AC 35 ms
52,460 KB
testcase_04 AC 35 ms
53,072 KB
testcase_05 AC 35 ms
52,888 KB
testcase_06 AC 172 ms
78,928 KB
testcase_07 AC 175 ms
79,000 KB
testcase_08 AC 165 ms
79,508 KB
testcase_09 AC 172 ms
79,240 KB
testcase_10 AC 45 ms
67,956 KB
testcase_11 AC 45 ms
67,352 KB
testcase_12 AC 42 ms
62,920 KB
testcase_13 AC 40 ms
62,172 KB
testcase_14 AC 174 ms
87,284 KB
testcase_15 AC 151 ms
76,056 KB
testcase_16 AC 82 ms
76,472 KB
testcase_17 AC 56 ms
67,996 KB
testcase_18 AC 149 ms
76,560 KB
testcase_19 AC 152 ms
76,112 KB
testcase_20 AC 147 ms
76,276 KB
testcase_21 AC 153 ms
76,312 KB
testcase_22 AC 133 ms
76,092 KB
testcase_23 AC 101 ms
76,488 KB
testcase_24 AC 150 ms
75,988 KB
testcase_25 AC 133 ms
76,204 KB
testcase_26 AC 67 ms
76,008 KB
testcase_27 AC 188 ms
85,432 KB
testcase_28 AC 108 ms
81,588 KB
testcase_29 AC 86 ms
81,196 KB
testcase_30 AC 193 ms
83,868 KB
testcase_31 AC 71 ms
77,672 KB
testcase_32 AC 76 ms
82,552 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N, X, Y = map(int, input().split())
diff = [0 for i in range(X + Y)]
ans = 0
for i in range(N):
	P, c = input().split()
	P = int(P)
	c = {'A': 1, 'B': -1}[c]
	diff[i % (X + Y)] += P * c
	ans += P * (1 - c) // 2
diff = sorted(diff)[::-1]
for i in range(X):
	ans += diff[i]
print(ans)
0