結果

問題 No.60 魔法少女
ユーザー vwxyzvwxyz
提出日時 2022-06-29 15:26:59
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
AC  
実行時間 3,276 ms / 5,000 ms
コード長 663 bytes
コンパイル時間 85 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 122,396 KB
最終ジャッジ日時 2024-11-22 18:17:52
合計ジャッジ時間 40,264 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2,067 ms
42,112 KB
testcase_01 AC 2,132 ms
42,240 KB
testcase_02 AC 2,224 ms
42,112 KB
testcase_03 AC 2,181 ms
54,016 KB
testcase_04 AC 2,808 ms
113,792 KB
testcase_05 AC 2,789 ms
121,248 KB
testcase_06 AC 3,188 ms
121,248 KB
testcase_07 AC 2,978 ms
118,684 KB
testcase_08 AC 2,800 ms
117,276 KB
testcase_09 AC 2,410 ms
112,512 KB
testcase_10 AC 3,245 ms
121,632 KB
testcase_11 AC 2,414 ms
101,888 KB
testcase_12 AC 2,589 ms
117,152 KB
testcase_13 AC 3,276 ms
122,396 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
readline=sys.stdin.readline

N,K=map(int,readline().split())
X,Y,HP=[],[],[]
for _ in range(N):
    x,y,hp=map(int,readline().split())
    x+=500;y+=500
    X.append(x)
    Y.append(y)
    HP.append(hp)
imos=[[0]*2001 for i in range(2001)]
for _ in range(K):
    x,y,w,h,d=map(int,readline().split())
    x+=500;y+=500
    w+=1;h+=1
    imos[x+w][y+h]+=d
    imos[x][y+h]-=d
    imos[x+w][y]-=d
    imos[x][y]+=d
for i in range(2001):
    for j in range(1,2001):
        imos[i][j]+=imos[i][j-1]
for i in range(1,2001):
    for j in range(2001):
        imos[i][j]+=imos[i-1][j]
ans=0
for x,y,hp in zip(X,Y,HP):
    ans+=max(0,hp-imos[x][y])
print(ans)
0