結果

問題 No.2922 Rose Garden
ユーザー YuuuTYuuuT
提出日時 2024-10-12 16:39:06
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 962 bytes
コンパイル時間 174 ms
コンパイル使用メモリ 82,192 KB
実行使用メモリ 100,480 KB
最終ジャッジ日時 2024-10-12 16:39:13
合計ジャッジ時間 6,685 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 100 ms
93,184 KB
testcase_01 AC 79 ms
83,552 KB
testcase_02 AC 100 ms
92,904 KB
testcase_03 AC 119 ms
98,816 KB
testcase_04 AC 98 ms
92,672 KB
testcase_05 AC 88 ms
91,008 KB
testcase_06 AC 79 ms
82,304 KB
testcase_07 AC 102 ms
100,480 KB
testcase_08 AC 69 ms
74,880 KB
testcase_09 AC 113 ms
98,560 KB
testcase_10 AC 67 ms
77,184 KB
testcase_11 AC 61 ms
70,784 KB
testcase_12 AC 89 ms
93,052 KB
testcase_13 AC 100 ms
98,048 KB
testcase_14 AC 63 ms
70,400 KB
testcase_15 AC 90 ms
91,136 KB
testcase_16 AC 97 ms
97,536 KB
testcase_17 WA -
testcase_18 AC 66 ms
69,632 KB
testcase_19 AC 87 ms
87,936 KB
testcase_20 AC 93 ms
95,488 KB
testcase_21 AC 114 ms
98,688 KB
testcase_22 AC 89 ms
90,624 KB
testcase_23 AC 108 ms
96,384 KB
testcase_24 WA -
testcase_25 WA -
testcase_26 AC 99 ms
95,744 KB
testcase_27 AC 100 ms
97,920 KB
testcase_28 AC 127 ms
95,488 KB
testcase_29 AC 93 ms
92,800 KB
testcase_30 AC 55 ms
63,360 KB
testcase_31 AC 52 ms
61,824 KB
testcase_32 AC 53 ms
62,464 KB
testcase_33 AC 51 ms
61,952 KB
testcase_34 AC 53 ms
63,872 KB
testcase_35 AC 52 ms
62,208 KB
testcase_36 AC 54 ms
65,408 KB
testcase_37 AC 56 ms
65,920 KB
testcase_38 AC 53 ms
63,232 KB
testcase_39 AC 56 ms
64,768 KB
testcase_40 AC 92 ms
95,360 KB
testcase_41 WA -
testcase_42 AC 121 ms
98,840 KB
testcase_43 AC 110 ms
85,120 KB
testcase_44 AC 118 ms
98,304 KB
testcase_45 AC 98 ms
74,752 KB
testcase_46 WA -
testcase_47 WA -
testcase_48 WA -
testcase_49 WA -
testcase_50 AC 47 ms
54,656 KB
testcase_51 AC 48 ms
54,016 KB
testcase_52 AC 47 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 celiDiv(tmp-H[i],B)<S-now:
    tmp = H[i]; now = S
  if tmp<H[i+1]:
    if now<celiDiv(H[i+1]-tmp,B):
      print('No')
      exit()
    aa = celiDiv(H[i+1]-tmp,B)
    tmp += B*aa
    now -= aa
print('Yes')
  
0