結果

問題 No.2922 Rose Garden
ユーザー FuyuruFuyuru
提出日時 2024-10-12 14:46:18
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 99 ms / 3,000 ms
コード長 252 bytes
コンパイル時間 184 ms
コンパイル使用メモリ 82,468 KB
実行使用メモリ 107,420 KB
最終ジャッジ日時 2024-10-12 14:46:28
合計ジャッジ時間 5,412 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 74 ms
86,528 KB
testcase_01 AC 63 ms
76,160 KB
testcase_02 AC 68 ms
85,888 KB
testcase_03 AC 92 ms
107,264 KB
testcase_04 AC 66 ms
86,016 KB
testcase_05 AC 64 ms
82,688 KB
testcase_06 AC 57 ms
74,880 KB
testcase_07 AC 79 ms
97,536 KB
testcase_08 AC 52 ms
66,688 KB
testcase_09 AC 82 ms
101,248 KB
testcase_10 AC 54 ms
71,792 KB
testcase_11 AC 49 ms
66,816 KB
testcase_12 AC 68 ms
86,272 KB
testcase_13 AC 76 ms
93,952 KB
testcase_14 AC 48 ms
65,408 KB
testcase_15 AC 71 ms
83,712 KB
testcase_16 AC 73 ms
92,464 KB
testcase_17 AC 99 ms
104,156 KB
testcase_18 AC 47 ms
61,952 KB
testcase_19 AC 60 ms
78,720 KB
testcase_20 AC 71 ms
88,832 KB
testcase_21 AC 84 ms
101,760 KB
testcase_22 AC 65 ms
82,944 KB
testcase_23 AC 85 ms
98,192 KB
testcase_24 AC 49 ms
65,408 KB
testcase_25 AC 63 ms
80,128 KB
testcase_26 AC 72 ms
89,984 KB
testcase_27 AC 74 ms
94,208 KB
testcase_28 AC 73 ms
89,756 KB
testcase_29 AC 68 ms
85,984 KB
testcase_30 AC 43 ms
60,800 KB
testcase_31 AC 43 ms
58,708 KB
testcase_32 AC 43 ms
59,716 KB
testcase_33 AC 42 ms
58,364 KB
testcase_34 AC 46 ms
60,992 KB
testcase_35 AC 43 ms
59,484 KB
testcase_36 AC 44 ms
61,996 KB
testcase_37 AC 46 ms
62,844 KB
testcase_38 AC 44 ms
60,140 KB
testcase_39 AC 45 ms
61,724 KB
testcase_40 AC 71 ms
88,116 KB
testcase_41 AC 61 ms
72,812 KB
testcase_42 AC 92 ms
107,292 KB
testcase_43 AC 61 ms
78,248 KB
testcase_44 AC 91 ms
102,496 KB
testcase_45 AC 50 ms
67,000 KB
testcase_46 AC 92 ms
107,420 KB
testcase_47 AC 70 ms
89,600 KB
testcase_48 AC 49 ms
65,792 KB
testcase_49 AC 80 ms
98,688 KB
testcase_50 AC 37 ms
52,096 KB
testcase_51 AC 37 ms
51,840 KB
testcase_52 AC 39 ms
51,584 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,S,B = map(int,input().split())
H = list(map(int,input().split()))
h = H[0]
s = S
F = True
for i in range(N):
    if H[i] >= h:
        if H[i]-h > s*B:
            F = False
            break
        h = H[i]
        s = S
print('Yes' if F else 'No')
0