結果

問題 No.2922 Rose Garden
ユーザー YuuuTYuuuT
提出日時 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
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 78 ms
91,136 KB
testcase_01 AC 69 ms
79,744 KB
testcase_02 AC 80 ms
90,844 KB
testcase_03 AC 114 ms
99,200 KB
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 AC 93 ms
100,480 KB
testcase_08 WA -
testcase_09 AC 104 ms
98,560 KB
testcase_10 AC 69 ms
76,416 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 90 ms
97,920 KB
testcase_14 WA -
testcase_15 AC 77 ms
88,320 KB
testcase_16 AC 83 ms
95,616 KB
testcase_17 AC 107 ms
97,136 KB
testcase_18 AC 58 ms
67,584 KB
testcase_19 AC 73 ms
82,688 KB
testcase_20 AC 85 ms
92,608 KB
testcase_21 AC 113 ms
99,072 KB
testcase_22 AC 78 ms
87,680 KB
testcase_23 AC 99 ms
96,640 KB
testcase_24 AC 65 ms
68,352 KB
testcase_25 AC 77 ms
84,736 KB
testcase_26 AC 90 ms
95,360 KB
testcase_27 AC 93 ms
98,304 KB
testcase_28 AC 82 ms
93,824 KB
testcase_29 AC 78 ms
90,880 KB
testcase_30 AC 49 ms
62,976 KB
testcase_31 AC 49 ms
61,568 KB
testcase_32 AC 49 ms
62,720 KB
testcase_33 AC 49 ms
61,696 KB
testcase_34 AC 52 ms
63,616 KB
testcase_35 AC 49 ms
62,208 KB
testcase_36 AC 52 ms
65,024 KB
testcase_37 AC 53 ms
65,792 KB
testcase_38 AC 50 ms
62,592 KB
testcase_39 AC 51 ms
64,768 KB
testcase_40 AC 88 ms
91,648 KB
testcase_41 AC 82 ms
75,392 KB
testcase_42 AC 134 ms
98,816 KB
testcase_43 AC 70 ms
81,536 KB
testcase_44 AC 107 ms
98,304 KB
testcase_45 AC 60 ms
71,936 KB
testcase_46 AC 111 ms
99,700 KB
testcase_47 AC 82 ms
93,900 KB
testcase_48 AC 58 ms
69,120 KB
testcase_49 AC 98 ms
96,696 KB
testcase_50 AC 43 ms
54,656 KB
testcase_51 AC 44 ms
54,144 KB
testcase_52 AC 45 ms
54,144 KB
権限があれば一括ダウンロードができます

ソースコード

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