結果

問題 No.2922 Rose Garden
ユーザー YuuuTYuuuT
提出日時 2024-10-12 15:56:23
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 975 bytes
コンパイル時間 139 ms
コンパイル使用メモリ 82,396 KB
実行使用メモリ 100,792 KB
最終ジャッジ日時 2024-10-12 15:56:33
合計ジャッジ時間 5,436 ms
ジャッジサーバーID
(参考情報)
judge / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 75 ms
90,764 KB
testcase_01 AC 67 ms
80,784 KB
testcase_02 AC 75 ms
91,280 KB
testcase_03 AC 104 ms
99,020 KB
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 AC 84 ms
100,792 KB
testcase_08 WA -
testcase_09 AC 91 ms
98,532 KB
testcase_10 AC 58 ms
78,384 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 85 ms
97,828 KB
testcase_14 WA -
testcase_15 AC 70 ms
88,684 KB
testcase_16 AC 76 ms
96,316 KB
testcase_17 AC 97 ms
97,048 KB
testcase_18 AC 50 ms
67,328 KB
testcase_19 AC 66 ms
84,816 KB
testcase_20 AC 73 ms
92,832 KB
testcase_21 AC 99 ms
98,928 KB
testcase_22 AC 69 ms
89,516 KB
testcase_23 AC 86 ms
96,932 KB
testcase_24 AC 49 ms
69,792 KB
testcase_25 AC 72 ms
86,112 KB
testcase_26 AC 79 ms
95,748 KB
testcase_27 AC 84 ms
97,744 KB
testcase_28 AC 79 ms
95,680 KB
testcase_29 AC 76 ms
90,388 KB
testcase_30 AC 50 ms
63,828 KB
testcase_31 AC 44 ms
62,532 KB
testcase_32 AC 46 ms
62,916 KB
testcase_33 AC 45 ms
62,208 KB
testcase_34 AC 46 ms
63,992 KB
testcase_35 AC 45 ms
62,136 KB
testcase_36 AC 47 ms
66,760 KB
testcase_37 AC 47 ms
67,152 KB
testcase_38 AC 44 ms
63,996 KB
testcase_39 AC 46 ms
65,524 KB
testcase_40 AC 70 ms
92,476 KB
testcase_41 AC 59 ms
75,808 KB
testcase_42 AC 124 ms
99,032 KB
testcase_43 AC 62 ms
82,476 KB
testcase_44 AC 95 ms
97,892 KB
testcase_45 AC 57 ms
73,856 KB
testcase_46 AC 101 ms
99,796 KB
testcase_47 AC 77 ms
94,052 KB
testcase_48 AC 55 ms
69,876 KB
testcase_49 AC 92 ms
96,884 KB
testcase_50 AC 42 ms
55,460 KB
testcase_51 AC 42 ms
54,840 KB
testcase_52 AC 41 ms
55,808 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):
  if tmp-H[i]<S-now:
    tmp = H[i]; now = S
  if i==N-1: break
  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