結果

問題 No.60 魔法少女
ユーザー lloyzlloyz
提出日時 2023-10-13 22:15:32
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 223 ms / 5,000 ms
コード長 759 bytes
コンパイル時間 449 ms
コンパイル使用メモリ 82,464 KB
実行使用メモリ 96,448 KB
最終ジャッジ日時 2024-09-15 17:58:28
合計ジャッジ時間 4,486 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 80 ms
69,760 KB
testcase_01 AC 78 ms
69,888 KB
testcase_02 AC 79 ms
69,760 KB
testcase_03 AC 77 ms
70,068 KB
testcase_04 AC 166 ms
86,272 KB
testcase_05 AC 182 ms
96,024 KB
testcase_06 AC 223 ms
95,572 KB
testcase_07 AC 192 ms
92,944 KB
testcase_08 AC 164 ms
90,752 KB
testcase_09 AC 136 ms
86,528 KB
testcase_10 AC 217 ms
95,532 KB
testcase_11 AC 106 ms
78,976 KB
testcase_12 AC 160 ms
92,700 KB
testcase_13 AC 223 ms
96,448 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

n, k = map(int, input().split())
M = []
for _ in range(n):
    x, y, h = map(int, input().split())
    x += 500
    y += 500
    M.append((x, y, h))
F = [[0 for _ in range(1002)] for _ in range(1002)]
for _ in range(k):
    sx, sy, ww, hh, d = map(int, input().split())
    sx += 500
    sy += 500
    F[sx][sy] -= d
    F[min(sx + ww + 1, 1001)][sy] += d
    F[sx][min(sy + hh + 1, 1001)] += d
    F[min(sx + ww + 1, 1001)][min(sy + hh + 1, 1001)] -= d
for i in range(1002):
    for j in range(1001):
        F[i][j + 1] += F[i][j]
for j in range(1002):
    for i in range(1001):
        F[i + 1][j] += F[i][j]
ans = 0
for i in range(n):
    x, y, h = M[i]
    d = F[x][y]
    h = max(h + d, 0)
    ans += h
print(ans)
0