結果

問題 No.2922 Rose Garden
ユーザー tkykwtnbtkykwtnb
提出日時 2024-10-12 15:58:57
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 107 ms / 3,000 ms
コード長 182 bytes
コンパイル時間 231 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 107,520 KB
最終ジャッジ日時 2024-10-12 15:59:03
合計ジャッジ時間 5,888 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 77 ms
86,784 KB
testcase_01 AC 65 ms
76,160 KB
testcase_02 AC 75 ms
86,016 KB
testcase_03 AC 100 ms
107,520 KB
testcase_04 AC 82 ms
86,016 KB
testcase_05 AC 73 ms
83,328 KB
testcase_06 AC 66 ms
75,136 KB
testcase_07 AC 88 ms
97,536 KB
testcase_08 AC 55 ms
67,072 KB
testcase_09 AC 92 ms
102,016 KB
testcase_10 AC 59 ms
71,936 KB
testcase_11 AC 54 ms
66,944 KB
testcase_12 AC 77 ms
86,144 KB
testcase_13 AC 84 ms
93,696 KB
testcase_14 AC 54 ms
65,280 KB
testcase_15 AC 74 ms
83,328 KB
testcase_16 AC 83 ms
92,928 KB
testcase_17 AC 100 ms
104,064 KB
testcase_18 AC 72 ms
61,952 KB
testcase_19 AC 69 ms
78,848 KB
testcase_20 AC 78 ms
89,216 KB
testcase_21 AC 92 ms
102,016 KB
testcase_22 AC 71 ms
82,944 KB
testcase_23 AC 91 ms
98,688 KB
testcase_24 AC 53 ms
65,792 KB
testcase_25 AC 69 ms
80,256 KB
testcase_26 AC 82 ms
90,240 KB
testcase_27 AC 88 ms
94,080 KB
testcase_28 AC 83 ms
90,752 KB
testcase_29 AC 76 ms
86,144 KB
testcase_30 AC 47 ms
60,928 KB
testcase_31 AC 46 ms
58,880 KB
testcase_32 AC 73 ms
59,520 KB
testcase_33 AC 46 ms
59,136 KB
testcase_34 AC 48 ms
60,928 KB
testcase_35 AC 46 ms
59,264 KB
testcase_36 AC 49 ms
62,464 KB
testcase_37 AC 50 ms
62,976 KB
testcase_38 AC 48 ms
60,416 KB
testcase_39 AC 49 ms
61,952 KB
testcase_40 AC 79 ms
88,832 KB
testcase_41 AC 63 ms
72,960 KB
testcase_42 AC 103 ms
107,392 KB
testcase_43 AC 67 ms
78,720 KB
testcase_44 AC 98 ms
103,936 KB
testcase_45 AC 55 ms
67,072 KB
testcase_46 AC 102 ms
107,392 KB
testcase_47 AC 107 ms
89,728 KB
testcase_48 AC 54 ms
66,304 KB
testcase_49 AC 91 ms
98,816 KB
testcase_50 AC 39 ms
51,584 KB
testcase_51 AC 40 ms
51,712 KB
testcase_52 AC 41 ms
51,456 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,S,B=map(int,input().split())
H=list(map(int,input().split()))
cur=H[0]+B*S
for i in range(1,N):
    cur=max(cur,H[i-1]+B*S)
    if H[i]>cur:
        exit(print("No"))
print("Yes")
0