結果

問題 No.60 魔法少女
ユーザー nanaenanae
提出日時 2017-04-14 12:42:36
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 1,067 bytes
コンパイル時間 83 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 69,144 KB
最終ジャッジ日時 2024-07-18 15:15:27
合計ジャッジ時間 9,335 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 211 ms
18,432 KB
testcase_01 AC 222 ms
18,560 KB
testcase_02 AC 410 ms
18,560 KB
testcase_03 AC 234 ms
26,496 KB
testcase_04 AC 628 ms
52,752 KB
testcase_05 AC 662 ms
68,260 KB
testcase_06 AC 858 ms
68,500 KB
testcase_07 WA -
testcase_08 AC 583 ms
60,216 KB
testcase_09 AC 449 ms
53,268 KB
testcase_10 AC 829 ms
68,368 KB
testcase_11 AC 350 ms
53,824 KB
testcase_12 AC 573 ms
62,264 KB
testcase_13 AC 906 ms
69,144 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

def solve():
    N, K = map(int, sys.stdin.readline().split())
    teki = dict()

    for i in range(N):
        x, y, hp = map(int, sys.stdin.readline().split())
        x += 500
        y += 500
        teki[(y, x)] = hp

    kougeki = [[0] * (1000 + 1) for i in range(1000 + 1)]

    for i in range(K):
        ax, ay, w, h, d = map(int, sys.stdin.readline().split())
        ax += 500
        ay += 500
        kougeki[ay][ax] = d
        if ax + w + 1 < 1000 + 1:
            kougeki[ay][ax + w + 1] = -d
        if ay + h + 1 < 1000 + 1:
            kougeki[ay + h + 1][ax] = -d
        if ax + w + 1 < 1000 + 1 and ay + h + 1 < 1000 + 1:
            kougeki[ay + h + 1][ax + w + 1] = d

    for i in range(1000 + 1):
        for j in range(1000):
            kougeki[i][j + 1] += kougeki[i][j]

    for j in range(1000 + 1):
        for i in range(1000):
            kougeki[i + 1][j] += kougeki[i][j]

    ans = 0
    for (y, x), hp in teki.items():
        ans += max(0, hp - kougeki[y][x])

    print(ans)

if __name__ == '__main__':
    solve()
0