結果

問題 No.2922 Rose Garden
ユーザー YuuuT
提出日時 2024-10-12 15:52:24
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 958 bytes
コンパイル時間 164 ms
コンパイル使用メモリ 82,180 KB
実行使用メモリ 100,480 KB
最終ジャッジ日時 2024-10-12 15:52:31
合計ジャッジ時間 6,153 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 43 WA * 7
権限があれば一括ダウンロードができます

ソースコード

diff #

# oj t -c "python3 main.py"
import sys,math
from collections import defaultdict,deque
from itertools import combinations,permutations,accumulate,product
from bisect import bisect_left,bisect_right
from heapq import heappop,heappush,heapify
#from more_itertools import distinct_permutations,distinct_combinations
#from sortedcontainers import SortedList,SortedSet
def input():return sys.stdin.readline().rstrip()
def ii(): return int(input())
def ms(): return map(int, input().split())
def li(): return list(map(int,input().split()))
inf = pow(10,18)
mod = 998244353
#/////////////////////////////////
# 切り上げ除算
def celiDiv(p : int, q : int) -> int:
  return (p + q -1) // q
N,S,B = ms()
H = li()
tmp = H[0]
now = S
for i in range(N-1):
  if tmp-H[i]<S-now:
    tmp = H[i]; now = S
  if tmp<H[i+1]:
    if now<celiDiv(H[i+1]-tmp,B):
      print('No')
      exit()
    tmp += B*celiDiv(H[i+1]-tmp,B)
    now -= celiDiv(H[i+1]-tmp,B)
print('Yes')
  
0