結果
問題 | No.60 魔法少女 |
ユーザー | nanae |
提出日時 | 2017-04-14 12:44:58 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
AC
|
実行時間 | 911 ms / 5,000 ms |
コード長 | 1,069 bytes |
コンパイル時間 | 104 ms |
コンパイル使用メモリ | 12,800 KB |
実行使用メモリ | 69,152 KB |
最終ジャッジ日時 | 2024-07-18 15:15:39 |
合計ジャッジ時間 | 8,834 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 216 ms
18,688 KB |
testcase_01 | AC | 215 ms
18,688 KB |
testcase_02 | AC | 213 ms
18,688 KB |
testcase_03 | AC | 231 ms
26,368 KB |
testcase_04 | AC | 622 ms
53,012 KB |
testcase_05 | AC | 681 ms
68,516 KB |
testcase_06 | AC | 871 ms
68,256 KB |
testcase_07 | AC | 728 ms
62,140 KB |
testcase_08 | AC | 601 ms
60,480 KB |
testcase_09 | AC | 459 ms
53,528 KB |
testcase_10 | AC | 863 ms
68,500 KB |
testcase_11 | AC | 350 ms
53,968 KB |
testcase_12 | AC | 581 ms
62,144 KB |
testcase_13 | AC | 911 ms
69,152 KB |
ソースコード
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()