結果

問題 No.2922 Rose Garden
ユーザー lollipoplollipop
提出日時 2024-10-12 15:23:33
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 86 ms / 3,000 ms
コード長 214 bytes
コンパイル時間 229 ms
コンパイル使用メモリ 82,156 KB
実行使用メモリ 107,656 KB
最終ジャッジ日時 2024-10-12 15:23:43
合計ジャッジ時間 5,530 ms
ジャッジサーバーID
(参考情報)
judge1 / judge
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 61 ms
87,624 KB
testcase_01 AC 53 ms
77,116 KB
testcase_02 AC 61 ms
86,268 KB
testcase_03 AC 85 ms
107,508 KB
testcase_04 AC 61 ms
86,736 KB
testcase_05 AC 66 ms
84,092 KB
testcase_06 AC 50 ms
75,668 KB
testcase_07 AC 71 ms
97,940 KB
testcase_08 AC 44 ms
67,500 KB
testcase_09 AC 76 ms
101,760 KB
testcase_10 AC 48 ms
73,024 KB
testcase_11 AC 44 ms
67,916 KB
testcase_12 AC 62 ms
87,588 KB
testcase_13 AC 68 ms
95,304 KB
testcase_14 AC 42 ms
66,536 KB
testcase_15 AC 58 ms
83,804 KB
testcase_16 AC 68 ms
93,800 KB
testcase_17 AC 85 ms
104,148 KB
testcase_18 AC 42 ms
62,504 KB
testcase_19 AC 57 ms
79,568 KB
testcase_20 AC 66 ms
89,544 KB
testcase_21 AC 77 ms
102,288 KB
testcase_22 AC 65 ms
84,516 KB
testcase_23 AC 77 ms
98,556 KB
testcase_24 AC 43 ms
66,296 KB
testcase_25 AC 56 ms
80,836 KB
testcase_26 AC 66 ms
92,328 KB
testcase_27 AC 71 ms
95,408 KB
testcase_28 AC 69 ms
91,404 KB
testcase_29 AC 62 ms
87,752 KB
testcase_30 AC 39 ms
62,632 KB
testcase_31 AC 39 ms
59,928 KB
testcase_32 AC 41 ms
60,348 KB
testcase_33 AC 39 ms
59,216 KB
testcase_34 AC 40 ms
61,544 KB
testcase_35 AC 38 ms
59,776 KB
testcase_36 AC 41 ms
64,056 KB
testcase_37 AC 42 ms
64,560 KB
testcase_38 AC 39 ms
60,916 KB
testcase_39 AC 40 ms
62,828 KB
testcase_40 AC 72 ms
88,752 KB
testcase_41 AC 52 ms
74,208 KB
testcase_42 AC 86 ms
107,532 KB
testcase_43 AC 56 ms
79,480 KB
testcase_44 AC 76 ms
102,912 KB
testcase_45 AC 46 ms
68,516 KB
testcase_46 AC 86 ms
107,656 KB
testcase_47 AC 65 ms
90,584 KB
testcase_48 AC 44 ms
67,116 KB
testcase_49 AC 76 ms
99,384 KB
testcase_50 AC 35 ms
52,000 KB
testcase_51 AC 35 ms
52,712 KB
testcase_52 AC 34 ms
51,748 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

h = H[0] + S*B
for i in range(N):

    if H[i] > h:
        exit(print("No"))

    if H[i] + S*B > h:
        h = H[i] + S*B

print("Yes")
    
0