結果

問題 No.2922 Rose Garden
ユーザー mymelochanmymelochan
提出日時 2024-09-16 16:11:23
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 99 ms / 3,000 ms
コード長 212 bytes
コンパイル時間 352 ms
コンパイル使用メモリ 82,428 KB
実行使用メモリ 107,716 KB
最終ジャッジ日時 2024-09-29 10:35:42
合計ジャッジ時間 5,238 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 66 ms
87,228 KB
testcase_01 AC 55 ms
76,288 KB
testcase_02 AC 65 ms
86,144 KB
testcase_03 AC 89 ms
107,392 KB
testcase_04 AC 66 ms
86,784 KB
testcase_05 AC 62 ms
83,328 KB
testcase_06 AC 54 ms
74,880 KB
testcase_07 AC 78 ms
97,976 KB
testcase_08 AC 46 ms
67,200 KB
testcase_09 AC 79 ms
101,628 KB
testcase_10 AC 50 ms
71,808 KB
testcase_11 AC 44 ms
66,816 KB
testcase_12 AC 64 ms
86,400 KB
testcase_13 AC 73 ms
93,824 KB
testcase_14 AC 46 ms
65,408 KB
testcase_15 AC 62 ms
84,352 KB
testcase_16 AC 72 ms
92,672 KB
testcase_17 AC 87 ms
104,140 KB
testcase_18 AC 43 ms
62,080 KB
testcase_19 AC 59 ms
79,488 KB
testcase_20 AC 68 ms
89,400 KB
testcase_21 AC 84 ms
102,192 KB
testcase_22 AC 63 ms
83,328 KB
testcase_23 AC 79 ms
98,760 KB
testcase_24 AC 45 ms
66,304 KB
testcase_25 AC 61 ms
80,384 KB
testcase_26 AC 75 ms
90,496 KB
testcase_27 AC 80 ms
94,336 KB
testcase_28 AC 75 ms
90,368 KB
testcase_29 AC 69 ms
86,400 KB
testcase_30 AC 43 ms
60,928 KB
testcase_31 AC 41 ms
59,264 KB
testcase_32 AC 40 ms
60,032 KB
testcase_33 AC 40 ms
59,520 KB
testcase_34 AC 42 ms
61,440 KB
testcase_35 AC 41 ms
59,648 KB
testcase_36 AC 43 ms
62,336 KB
testcase_37 AC 45 ms
63,360 KB
testcase_38 AC 42 ms
60,800 KB
testcase_39 AC 42 ms
62,300 KB
testcase_40 AC 68 ms
89,216 KB
testcase_41 AC 54 ms
73,600 KB
testcase_42 AC 89 ms
107,716 KB
testcase_43 AC 59 ms
78,592 KB
testcase_44 AC 99 ms
104,328 KB
testcase_45 AC 46 ms
67,544 KB
testcase_46 AC 92 ms
107,608 KB
testcase_47 AC 71 ms
90,368 KB
testcase_48 AC 50 ms
66,560 KB
testcase_49 AC 84 ms
98,836 KB
testcase_50 AC 37 ms
51,968 KB
testcase_51 AC 41 ms
51,968 KB
testcase_52 AC 34 ms
51,968 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,S,B = map(int, input().split())
H = list(map(int, input().split()))

ma = H[0]
for i in range(N-1):
    ma = max(ma, H[i])
    
    if ma + B*S < H[i+1]:
        print('No')
        break
else:
    print("Yes")
0