結果

問題 No.60 魔法少女
ユーザー vwxyzvwxyz
提出日時 2022-06-29 15:27:16
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 288 ms / 5,000 ms
コード長 663 bytes
コンパイル時間 342 ms
コンパイル使用メモリ 82,040 KB
実行使用メモリ 112,956 KB
最終ジャッジ日時 2024-05-02 06:42:56
合計ジャッジ時間 4,763 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 130 ms
92,160 KB
testcase_01 AC 127 ms
92,160 KB
testcase_02 AC 126 ms
92,160 KB
testcase_03 AC 132 ms
92,156 KB
testcase_04 AC 226 ms
108,416 KB
testcase_05 AC 239 ms
112,196 KB
testcase_06 AC 288 ms
112,956 KB
testcase_07 AC 248 ms
110,420 KB
testcase_08 AC 218 ms
109,632 KB
testcase_09 AC 188 ms
108,368 KB
testcase_10 AC 278 ms
112,732 KB
testcase_11 AC 161 ms
98,616 KB
testcase_12 AC 224 ms
109,992 KB
testcase_13 AC 288 ms
112,108 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
readline=sys.stdin.readline

N,K=map(int,readline().split())
X,Y,HP=[],[],[]
for _ in range(N):
    x,y,hp=map(int,readline().split())
    x+=500;y+=500
    X.append(x)
    Y.append(y)
    HP.append(hp)
imos=[[0]*2001 for i in range(2001)]
for _ in range(K):
    x,y,w,h,d=map(int,readline().split())
    x+=500;y+=500
    w+=1;h+=1
    imos[x+w][y+h]+=d
    imos[x][y+h]-=d
    imos[x+w][y]-=d
    imos[x][y]+=d
for i in range(2001):
    for j in range(1,2001):
        imos[i][j]+=imos[i][j-1]
for i in range(1,2001):
    for j in range(2001):
        imos[i][j]+=imos[i-1][j]
ans=0
for x,y,hp in zip(X,Y,HP):
    ans+=max(0,hp-imos[x][y])
print(ans)
0