結果

問題 No.2623 Room Allocation
ユーザー fiblonariafiblonaria
提出日時 2024-02-10 05:58:18
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 263 bytes
コンパイル時間 133 ms
コンパイル使用メモリ 82,088 KB
実行使用メモリ 85,812 KB
最終ジャッジ日時 2024-09-28 17:00:23
合計ジャッジ時間 4,848 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,328 KB
testcase_01 AC 33 ms
52,996 KB
testcase_02 AC 31 ms
53,128 KB
testcase_03 WA -
testcase_04 AC 33 ms
53,444 KB
testcase_05 AC 33 ms
52,224 KB
testcase_06 AC 169 ms
78,572 KB
testcase_07 AC 168 ms
79,264 KB
testcase_08 AC 172 ms
78,676 KB
testcase_09 AC 168 ms
78,648 KB
testcase_10 AC 42 ms
65,484 KB
testcase_11 AC 45 ms
65,368 KB
testcase_12 AC 41 ms
61,932 KB
testcase_13 WA -
testcase_14 AC 174 ms
85,812 KB
testcase_15 AC 156 ms
75,980 KB
testcase_16 AC 84 ms
76,064 KB
testcase_17 AC 56 ms
68,396 KB
testcase_18 AC 152 ms
75,992 KB
testcase_19 AC 148 ms
76,360 KB
testcase_20 AC 150 ms
76,012 KB
testcase_21 AC 153 ms
76,052 KB
testcase_22 AC 134 ms
76,312 KB
testcase_23 AC 99 ms
75,984 KB
testcase_24 AC 152 ms
76,400 KB
testcase_25 AC 135 ms
75,984 KB
testcase_26 AC 68 ms
76,056 KB
testcase_27 AC 193 ms
84,508 KB
testcase_28 AC 111 ms
81,144 KB
testcase_29 AC 85 ms
79,656 KB
testcase_30 AC 198 ms
82,868 KB
testcase_31 AC 70 ms
77,564 KB
testcase_32 AC 73 ms
81,800 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)
ans += sum(diff[-X:])
print(ans)
0