結果
問題 | No.60 魔法少女 |
ユーザー | mkawa2 |
提出日時 | 2020-01-09 12:35:08 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
AC
|
実行時間 | 1,056 ms / 5,000 ms |
コード長 | 983 bytes |
コンパイル時間 | 233 ms |
コンパイル使用メモリ | 12,672 KB |
実行使用メモリ | 71,168 KB |
最終ジャッジ日時 | 2024-05-02 13:42:07 |
合計ジャッジ時間 | 10,757 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 241 ms
18,432 KB |
testcase_01 | AC | 240 ms
18,432 KB |
testcase_02 | AC | 236 ms
18,560 KB |
testcase_03 | AC | 259 ms
26,496 KB |
testcase_04 | AC | 759 ms
53,504 KB |
testcase_05 | AC | 767 ms
70,016 KB |
testcase_06 | AC | 1,044 ms
69,504 KB |
testcase_07 | AC | 856 ms
64,384 KB |
testcase_08 | AC | 687 ms
61,696 KB |
testcase_09 | AC | 536 ms
54,144 KB |
testcase_10 | AC | 981 ms
70,016 KB |
testcase_11 | AC | 380 ms
54,272 KB |
testcase_12 | AC | 650 ms
64,512 KB |
testcase_13 | AC | 1,056 ms
71,168 KB |
ソースコード
import sys sys.setrecursionlimit(10 ** 6) p2D = lambda x: print(*x, sep="\n") def MI(): return map(int, sys.stdin.readline().split()) def LI(): return list(map(int, sys.stdin.readline().split())) def main(): n, k = MI() ene = [LI() for _ in range(n)] t = [[0] * 1001 for _ in range(1001)] for _ in range(k): j, i, w, h, d = MI() i, j = i + 500, j + 500 t[i][j] += d if i + h + 1 <= 1000 and j + w + 1 <= 1000: t[i + h + 1][j + w + 1] += d if i + h + 1 <= 1000: t[i + h + 1][j] -= d if j + w + 1 <= 1000: t[i][j + w + 1] -= d # p2D(t) for i in range(1001): ti = t[i] for j in range(1, 1001): ti[j] += ti[j - 1] for j in range(1001): for i in range(1, 1001): t[i][j] += t[i - 1][j] # p2D(t) ans = 0 for j, i, hp in ene: i, j = i + 500, j + 500 damage = t[i][j] if hp - damage > 0: ans += hp - damage print(ans) main()