結果

問題 No.2922 Rose Garden
ユーザー 電たくT電たくT
提出日時 2024-10-12 15:01:13
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 107 ms / 3,000 ms
コード長 315 bytes
コンパイル時間 139 ms
コンパイル使用メモリ 82,012 KB
実行使用メモリ 107,776 KB
最終ジャッジ日時 2024-10-12 15:01:18
合計ジャッジ時間 5,175 ms
ジャッジサーバーID
(参考情報)
judge / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 71 ms
89,024 KB
testcase_01 AC 61 ms
78,904 KB
testcase_02 AC 68 ms
88,196 KB
testcase_03 AC 88 ms
107,776 KB
testcase_04 AC 67 ms
88,596 KB
testcase_05 AC 66 ms
84,968 KB
testcase_06 AC 57 ms
76,804 KB
testcase_07 AC 77 ms
98,936 KB
testcase_08 AC 50 ms
69,096 KB
testcase_09 AC 84 ms
104,024 KB
testcase_10 AC 52 ms
75,016 KB
testcase_11 AC 47 ms
68,716 KB
testcase_12 AC 69 ms
88,196 KB
testcase_13 AC 74 ms
96,288 KB
testcase_14 AC 47 ms
67,716 KB
testcase_15 AC 62 ms
85,368 KB
testcase_16 AC 70 ms
93,788 KB
testcase_17 AC 85 ms
104,256 KB
testcase_18 AC 44 ms
63,252 KB
testcase_19 AC 59 ms
79,336 KB
testcase_20 AC 71 ms
89,544 KB
testcase_21 AC 107 ms
102,060 KB
testcase_22 AC 63 ms
83,436 KB
testcase_23 AC 79 ms
98,252 KB
testcase_24 AC 45 ms
66,196 KB
testcase_25 AC 58 ms
81,592 KB
testcase_26 AC 71 ms
91,940 KB
testcase_27 AC 73 ms
95,656 KB
testcase_28 AC 69 ms
91,508 KB
testcase_29 AC 65 ms
87,472 KB
testcase_30 AC 38 ms
60,668 KB
testcase_31 AC 42 ms
59,540 KB
testcase_32 AC 39 ms
60,668 KB
testcase_33 AC 40 ms
59,412 KB
testcase_34 AC 39 ms
61,748 KB
testcase_35 AC 39 ms
60,780 KB
testcase_36 AC 43 ms
63,208 KB
testcase_37 AC 42 ms
63,544 KB
testcase_38 AC 40 ms
60,696 KB
testcase_39 AC 45 ms
63,204 KB
testcase_40 AC 66 ms
88,688 KB
testcase_41 AC 50 ms
73,440 KB
testcase_42 AC 85 ms
107,700 KB
testcase_43 AC 55 ms
79,428 KB
testcase_44 AC 76 ms
102,680 KB
testcase_45 AC 45 ms
69,268 KB
testcase_46 AC 88 ms
107,316 KB
testcase_47 AC 69 ms
90,752 KB
testcase_48 AC 46 ms
68,616 KB
testcase_49 AC 77 ms
98,616 KB
testcase_50 AC 36 ms
51,948 KB
testcase_51 AC 36 ms
52,004 KB
testcase_52 AC 35 ms
53,652 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,S,B = map(int,input().split())
H = list(map(int,input().split()))
dame = 0
h = H[0]+S*B
M = H[0]
for a in range(N-1):
    if H[a+1] > M:
        if H[a+1]-h > 0:
            dame += 1
        else:
            h = H[a+1] + S*B
            M = H[a+1]
    
    
if dame >= 1:
    print("No")
else:
    print("Yes")
0