結果

問題 No.60 魔法少女
ユーザー zonzo34zonzo34
提出日時 2021-12-24 10:21:15
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 324 ms / 5,000 ms
コード長 590 bytes
コンパイル時間 493 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 125,268 KB
最終ジャッジ日時 2024-09-19 07:17:15
合計ジャッジ時間 4,429 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 95 ms
91,520 KB
testcase_01 AC 99 ms
92,032 KB
testcase_02 AC 97 ms
91,648 KB
testcase_03 AC 95 ms
91,904 KB
testcase_04 AC 234 ms
114,800 KB
testcase_05 AC 265 ms
125,016 KB
testcase_06 AC 319 ms
125,144 KB
testcase_07 AC 274 ms
121,084 KB
testcase_08 AC 236 ms
119,296 KB
testcase_09 AC 192 ms
114,944 KB
testcase_10 AC 302 ms
125,036 KB
testcase_11 AC 155 ms
112,384 KB
testcase_12 AC 225 ms
121,212 KB
testcase_13 AC 324 ms
125,268 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,K=map(int,input().split())
wal=[]
for i in range(N):
    x,y,hp=map(int,input().split())
    x,y=x+500,y+500
    wal.append((x,y,hp))

imos=[[0]*1510 for _ in range(1510)]
sm=[[0]*1510 for _ in range(1510)]
for i in range(K):
    ax,ay,w,h,d=map(int,input().split())
    ax,ay=ax+500,ay+500
    imos[ax][ay]+=d
    imos[ax+w+1][ay]-=d
    imos[ax][ay+h+1]-=d
    imos[ax+w+1][ay+h+1]+=d

for i in range(1500):
    for j in range(1500):
        sm[i+1][j+1]=sm[i][j+1]+sm[i+1][j]-sm[i][j]+imos[i][j]

ans=0
for x,y,hp in wal:
    if sm[x+1][y+1]<hp:
        ans+=hp-sm[x+1][y+1]
print(ans)
0