結果

問題 No.2623 Room Allocation
ユーザー tipstar0125tipstar0125
提出日時 2024-02-14 17:00:04
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 758 ms / 2,000 ms
コード長 362 bytes
コンパイル時間 300 ms
コンパイル使用メモリ 82,096 KB
実行使用メモリ 116,616 KB
最終ジャッジ日時 2024-09-28 18:56:18
合計ジャッジ時間 7,293 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
53,672 KB
testcase_01 AC 34 ms
52,216 KB
testcase_02 AC 37 ms
53,064 KB
testcase_03 AC 34 ms
52,836 KB
testcase_04 AC 33 ms
52,476 KB
testcase_05 AC 34 ms
52,444 KB
testcase_06 AC 202 ms
86,612 KB
testcase_07 AC 211 ms
86,992 KB
testcase_08 AC 195 ms
86,420 KB
testcase_09 AC 211 ms
86,996 KB
testcase_10 AC 182 ms
113,916 KB
testcase_11 AC 186 ms
113,880 KB
testcase_12 AC 115 ms
94,976 KB
testcase_13 AC 115 ms
94,796 KB
testcase_14 AC 405 ms
116,616 KB
testcase_15 AC 152 ms
76,264 KB
testcase_16 AC 84 ms
76,472 KB
testcase_17 AC 60 ms
69,244 KB
testcase_18 AC 148 ms
76,360 KB
testcase_19 AC 142 ms
76,156 KB
testcase_20 AC 142 ms
76,304 KB
testcase_21 AC 149 ms
76,176 KB
testcase_22 AC 130 ms
76,268 KB
testcase_23 AC 102 ms
76,296 KB
testcase_24 AC 149 ms
76,328 KB
testcase_25 AC 132 ms
76,656 KB
testcase_26 AC 73 ms
76,424 KB
testcase_27 AC 758 ms
107,952 KB
testcase_28 AC 321 ms
98,136 KB
testcase_29 AC 210 ms
96,108 KB
testcase_30 AC 727 ms
103,196 KB
testcase_31 AC 112 ms
83,124 KB
testcase_32 AC 186 ms
102,960 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,X,Y=map(int,input().split())
g=[[0 for _ in range(3)] for _ in range(X+Y)]
for i in range(N):
    p,ci=input().split()
    a=0
    b=0
    if ci=="A":a=int(p)
    else:b=int(p)
    g[i%(X+Y)][1]+=a
    g[i%(X+Y)][2]+=b
    g[i%(X+Y)][0]=g[i%(X+Y)][2]-g[i%(X+Y)][1]
g.sort()

ans=0
for i in range(X+Y):
    if i<X:ans+=g[i][1]
    else:ans+=g[i][2]
print(ans)

0