結果

問題 No.2408 Lakes and Fish
ユーザー MottchanMottchan
提出日時 2023-08-12 08:41:00
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 480 bytes
コンパイル時間 327 ms
コンパイル使用メモリ 82,136 KB
実行使用メモリ 90,772 KB
最終ジャッジ日時 2024-11-19 08:03:45
合計ジャッジ時間 5,041 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
56,044 KB
testcase_01 AC 38 ms
55,816 KB
testcase_02 AC 39 ms
54,892 KB
testcase_03 AC 39 ms
55,572 KB
testcase_04 WA -
testcase_05 WA -
testcase_06 AC 123 ms
90,168 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
sys.setrecursionlimit(5*10**5)
input = sys.stdin.readline
from collections import defaultdict, deque, Counter
from heapq import heappop, heappush
from bisect import bisect_left, bisect_right
from math import gcd

n,m = map(int,input().split())
l = list(map(int,input().split()))
ans=0
for _ in range(m):
    f,b,w = map(int,input().split())
    idx=bisect_left(l,f)
    if idx < n:
        ans+=max(w-(l[idx]-f), b)
    else:
        ans+=max(w-(f-l[-1]),b)

print(ans)
0