結果

問題 No.60 魔法少女
ユーザー zonzo34zonzo34
提出日時 2021-12-25 17:16:55
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 318 ms / 5,000 ms
コード長 608 bytes
コンパイル時間 220 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 106,836 KB
最終ジャッジ日時 2024-09-21 19:59:08
合計ジャッジ時間 4,362 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 108 ms
91,648 KB
testcase_01 AC 102 ms
91,520 KB
testcase_02 AC 108 ms
91,392 KB
testcase_03 AC 103 ms
91,520 KB
testcase_04 AC 229 ms
96,768 KB
testcase_05 AC 248 ms
106,320 KB
testcase_06 AC 308 ms
106,072 KB
testcase_07 AC 284 ms
102,656 KB
testcase_08 AC 221 ms
101,632 KB
testcase_09 AC 179 ms
97,024 KB
testcase_10 AC 290 ms
106,596 KB
testcase_11 AC 144 ms
90,240 KB
testcase_12 AC 219 ms
102,756 KB
testcase_13 AC 318 ms
106,836 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,K=map(int,input().split())
wal=[]

for i in range(N):
    x,y,hp=map(int,input().split())
    x,y=x+500,y+500
    wal.append((x,y,hp))

imos=[[0]*1510 for _ in range(1510)]

for i in range(K):
    ax,ay,w,h,d=map(int,input().split())
    ax,ay=ax+500,ay+500
    imos[ax][ay]+=d
    imos[ax][ay+h+1]-=d
    imos[ax+w+1][ay]-=d
    imos[ax+w+1][ay+h+1]+=d

for i in range(1500):
    for j in range(1500):
        imos[i+1][j]+=imos[i][j]
for i in range(1500):
    for j in range(1500):
        imos[i][j+1]+=imos[i][j]
    
ans=0
for x,y,hp in wal:
    if imos[x][y]<hp:
        ans+=hp-imos[x][y]
print(ans)
0