結果

問題 No.60 魔法少女
ユーザー roiti46roiti46
提出日時 2015-02-18 03:11:47
言語 PyPy2
(7.3.15)
結果
AC  
実行時間 346 ms / 5,000 ms
コード長 669 bytes
コンパイル時間 312 ms
コンパイル使用メモリ 76,964 KB
実行使用メモリ 95,756 KB
最終ジャッジ日時 2024-06-23 21:01:15
合計ジャッジ時間 4,909 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 142 ms
79,780 KB
testcase_01 AC 142 ms
79,772 KB
testcase_02 AC 151 ms
79,900 KB
testcase_03 AC 145 ms
79,608 KB
testcase_04 AC 346 ms
95,112 KB
testcase_05 AC 272 ms
95,376 KB
testcase_06 AC 329 ms
95,660 KB
testcase_07 AC 292 ms
95,756 KB
testcase_08 AC 251 ms
95,288 KB
testcase_09 AC 206 ms
95,140 KB
testcase_10 AC 329 ms
95,532 KB
testcase_11 AC 185 ms
87,156 KB
testcase_12 AC 243 ms
95,144 KB
testcase_13 AC 339 ms
95,244 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,K = map(int,raw_input().split())
M = [[0]*1010 for i in xrange(1010)]
for loop in xrange(N):
    x,y,hp = map(int,raw_input().split())
    x += 500; y += 500
    M[y][x] = hp

A = [[0]*1010 for i in xrange(1010)]
for loop in xrange(K):
    ax,ay,w,h,d = map(int,raw_input().split())
    ax += 500; ay += 500
    ex,ey = min(1009,ax+w+1), min(1009,ay+h+1)
    A[ay][ax] += d
    A[ay][ex] -= d
    A[ey][ax] -= d
    A[ey][ex] += d
        
ans = 0
for x in xrange(1010):
    for y in xrange(1,1010):
        A[y][x] += A[y-1][x]
for y in xrange(1010):
    for x in xrange(1010):
        if x > 0: A[y][x] += A[y][x-1]
        ans += max(0, M[y][x]-A[y][x])
print ans
0