結果

問題 No.2922 Rose Garden
ユーザー Polaris2124Polaris2124
提出日時 2024-10-12 14:38:14
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 656 bytes
コンパイル時間 167 ms
コンパイル使用メモリ 82,252 KB
実行使用メモリ 103,084 KB
最終ジャッジ日時 2024-10-12 14:38:20
合計ジャッジ時間 5,450 ms
ジャッジサーバーID
(参考情報)
judge / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 73 ms
89,148 KB
testcase_01 AC 58 ms
79,180 KB
testcase_02 AC 67 ms
89,124 KB
testcase_03 AC 87 ms
102,684 KB
testcase_04 AC 68 ms
88,324 KB
testcase_05 AC 65 ms
84,888 KB
testcase_06 AC 63 ms
78,168 KB
testcase_07 AC 81 ms
95,792 KB
testcase_08 AC 51 ms
70,528 KB
testcase_09 AC 80 ms
98,812 KB
testcase_10 AC 52 ms
76,592 KB
testcase_11 AC 50 ms
71,240 KB
testcase_12 AC 67 ms
89,460 KB
testcase_13 AC 76 ms
93,592 KB
testcase_14 AC 50 ms
68,640 KB
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 AC 56 ms
65,856 KB
testcase_31 AC 47 ms
64,132 KB
testcase_32 AC 47 ms
65,076 KB
testcase_33 AC 48 ms
63,676 KB
testcase_34 AC 48 ms
65,636 KB
testcase_35 AC 47 ms
63,832 KB
testcase_36 AC 48 ms
67,112 KB
testcase_37 AC 49 ms
67,940 KB
testcase_38 AC 48 ms
65,452 KB
testcase_39 AC 49 ms
67,764 KB
testcase_40 WA -
testcase_41 WA -
testcase_42 WA -
testcase_43 WA -
testcase_44 WA -
testcase_45 WA -
testcase_46 WA -
testcase_47 WA -
testcase_48 WA -
testcase_49 WA -
testcase_50 AC 50 ms
61,720 KB
testcase_51 AC 50 ms
62,564 KB
testcase_52 AC 48 ms
61,232 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
import math
from itertools import product, permutations, combinations, accumulate
from heapq import heapify, heappush, heappop
from collections import deque, defaultdict, Counter
from bisect import bisect, bisect_left, bisect_right
from copy import copy, deepcopy
#from sortedcontainers import SortedSet, SortedList, SortedDict

sys.setrecursionlimit(10**7)
INF = float('inf')
LINF = 1 << 60
MOD = 10**9+7

def mii():
    return map(int, sys.stdin.readline().split())


N, S, B = mii()
H = list(mii())

ans = True

for i in range(N-1):
    if H[i+1] - H[i] > S*B:
        ans = False
        break

if ans:
    print("Yes")
else:
    print("No")
0