結果

問題 No.60 魔法少女
ユーザー KudeKude
提出日時 2020-09-07 06:59:22
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 353 ms / 5,000 ms
コード長 674 bytes
コンパイル時間 204 ms
コンパイル使用メモリ 82,008 KB
実行使用メモリ 112,172 KB
最終ジャッジ日時 2024-11-29 10:12:34
合計ジャッジ時間 5,072 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 82 ms
70,100 KB
testcase_01 AC 83 ms
69,024 KB
testcase_02 AC 82 ms
69,884 KB
testcase_03 AC 82 ms
69,412 KB
testcase_04 AC 238 ms
90,228 KB
testcase_05 AC 288 ms
110,292 KB
testcase_06 AC 346 ms
110,228 KB
testcase_07 AC 294 ms
103,540 KB
testcase_08 AC 245 ms
99,692 KB
testcase_09 AC 190 ms
90,468 KB
testcase_10 AC 336 ms
110,248 KB
testcase_11 AC 147 ms
90,900 KB
testcase_12 AC 241 ms
103,404 KB
testcase_13 AC 353 ms
112,172 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

s = [[0] * 1002 for _ in range(1002)]
n, k = map(int, input().split())
enemies = [map(int, input().split()) for _ in range(n)]
for _ in range(k):
    ax, ay, w, h, d = map(int, input().split())
    ax += 500
    ay += 500
    bx = min(1001, ax + w + 1)
    by = min(1001, ay + h + 1)
    s[ax][ay] += d
    s[ax][by] -= d
    s[bx][ay] -= d
    s[bx][by] += d

for i in range(1002):
    now = 0
    for j in range(1002):
        now += s[i][j]
        s[i][j] = now

for j in range(1002):
    now = 0
    for i in range(1002):
        now += s[i][j]
        s[i][j] = now

ans = 0
for x, y, hp in enemies:
    x += 500
    y += 500
    ans += max(0, hp - s[x][y])
print(ans)
0