結果

問題 No.2922 Rose Garden
ユーザー H20H20
提出日時 2024-10-12 14:45:02
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 94 ms / 3,000 ms
コード長 173 bytes
コンパイル時間 254 ms
コンパイル使用メモリ 82,464 KB
実行使用メモリ 107,648 KB
最終ジャッジ日時 2024-10-12 14:45:12
合計ジャッジ時間 5,623 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 70 ms
86,656 KB
testcase_01 AC 60 ms
76,416 KB
testcase_02 AC 71 ms
86,144 KB
testcase_03 AC 94 ms
107,648 KB
testcase_04 AC 69 ms
86,016 KB
testcase_05 AC 67 ms
83,456 KB
testcase_06 AC 59 ms
75,264 KB
testcase_07 AC 82 ms
97,280 KB
testcase_08 AC 51 ms
66,944 KB
testcase_09 AC 84 ms
101,760 KB
testcase_10 AC 55 ms
71,680 KB
testcase_11 AC 50 ms
66,816 KB
testcase_12 AC 69 ms
86,400 KB
testcase_13 AC 76 ms
93,952 KB
testcase_14 AC 50 ms
65,152 KB
testcase_15 AC 72 ms
83,456 KB
testcase_16 AC 76 ms
92,584 KB
testcase_17 AC 93 ms
104,576 KB
testcase_18 AC 48 ms
62,208 KB
testcase_19 AC 65 ms
78,464 KB
testcase_20 AC 73 ms
89,344 KB
testcase_21 AC 87 ms
102,188 KB
testcase_22 AC 66 ms
82,944 KB
testcase_23 AC 83 ms
98,572 KB
testcase_24 AC 50 ms
65,664 KB
testcase_25 AC 69 ms
80,512 KB
testcase_26 AC 80 ms
90,624 KB
testcase_27 AC 79 ms
94,464 KB
testcase_28 AC 74 ms
90,624 KB
testcase_29 AC 76 ms
86,144 KB
testcase_30 AC 44 ms
60,416 KB
testcase_31 AC 46 ms
59,264 KB
testcase_32 AC 52 ms
59,648 KB
testcase_33 AC 45 ms
58,752 KB
testcase_34 AC 45 ms
61,184 KB
testcase_35 AC 44 ms
59,264 KB
testcase_36 AC 45 ms
61,952 KB
testcase_37 AC 46 ms
63,104 KB
testcase_38 AC 44 ms
60,544 KB
testcase_39 AC 44 ms
61,952 KB
testcase_40 AC 71 ms
88,704 KB
testcase_41 AC 56 ms
73,088 KB
testcase_42 AC 93 ms
107,392 KB
testcase_43 AC 64 ms
78,172 KB
testcase_44 AC 85 ms
102,528 KB
testcase_45 AC 55 ms
67,072 KB
testcase_46 AC 93 ms
107,040 KB
testcase_47 AC 72 ms
90,112 KB
testcase_48 AC 51 ms
66,176 KB
testcase_49 AC 84 ms
98,432 KB
testcase_50 AC 39 ms
51,584 KB
testcase_51 AC 38 ms
51,840 KB
testcase_52 AC 38 ms
51,456 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,S,B = map(int,input().split())
H = list(map(int,input().split()))
hi = H[0]
for h in H:
    if hi+B*S<h:
        print('No')
        exit()
    hi = max(hi,h)
print('Yes')
0