結果

問題 No.60 魔法少女
ユーザー roiti46roiti46
提出日時 2015-02-18 02:59:14
言語 PyPy2
(7.3.15)
結果
WA  
実行時間 -
コード長 555 bytes
コンパイル時間 364 ms
コンパイル使用メモリ 77,056 KB
実行使用メモリ 94,848 KB
最終ジャッジ日時 2024-06-23 20:59:09
合計ジャッジ時間 6,828 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 98 ms
80,000 KB
testcase_01 AC 101 ms
79,872 KB
testcase_02 AC 103 ms
79,996 KB
testcase_03 AC 103 ms
80,124 KB
testcase_04 AC 585 ms
94,736 KB
testcase_05 AC 396 ms
94,736 KB
testcase_06 AC 738 ms
94,760 KB
testcase_07 AC 563 ms
94,464 KB
testcase_08 AC 392 ms
94,720 KB
testcase_09 AC 287 ms
94,640 KB
testcase_10 AC 643 ms
94,848 KB
testcase_11 WA -
testcase_12 AC 330 ms
94,752 KB
testcase_13 AC 737 ms
94,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

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