結果

問題 No.2922 Rose Garden
ユーザー nikoro256nikoro256
提出日時 2024-10-12 14:56:57
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 108 ms / 3,000 ms
コード長 183 bytes
コンパイル時間 353 ms
コンパイル使用メモリ 82,416 KB
実行使用メモリ 107,776 KB
最終ジャッジ日時 2024-10-12 14:57:16
合計ジャッジ時間 4,917 ms
ジャッジサーバーID
(参考情報)
judge2 / judge
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 63 ms
87,076 KB
testcase_01 AC 58 ms
76,416 KB
testcase_02 AC 64 ms
86,400 KB
testcase_03 AC 86 ms
107,564 KB
testcase_04 AC 63 ms
86,400 KB
testcase_05 AC 59 ms
83,328 KB
testcase_06 AC 68 ms
74,880 KB
testcase_07 AC 95 ms
98,176 KB
testcase_08 AC 46 ms
67,072 KB
testcase_09 AC 108 ms
101,564 KB
testcase_10 AC 49 ms
71,680 KB
testcase_11 AC 45 ms
66,944 KB
testcase_12 AC 63 ms
86,400 KB
testcase_13 AC 68 ms
94,208 KB
testcase_14 AC 44 ms
65,792 KB
testcase_15 AC 61 ms
83,584 KB
testcase_16 AC 69 ms
92,544 KB
testcase_17 AC 86 ms
103,936 KB
testcase_18 AC 41 ms
61,952 KB
testcase_19 AC 59 ms
79,104 KB
testcase_20 AC 65 ms
89,984 KB
testcase_21 AC 78 ms
102,348 KB
testcase_22 AC 59 ms
83,456 KB
testcase_23 AC 96 ms
98,688 KB
testcase_24 AC 44 ms
65,776 KB
testcase_25 AC 57 ms
80,512 KB
testcase_26 AC 66 ms
90,084 KB
testcase_27 AC 69 ms
94,208 KB
testcase_28 AC 72 ms
90,240 KB
testcase_29 AC 68 ms
86,528 KB
testcase_30 AC 43 ms
61,188 KB
testcase_31 AC 38 ms
59,520 KB
testcase_32 AC 39 ms
60,288 KB
testcase_33 AC 36 ms
58,752 KB
testcase_34 AC 39 ms
61,184 KB
testcase_35 AC 37 ms
59,392 KB
testcase_36 AC 41 ms
62,464 KB
testcase_37 AC 42 ms
63,744 KB
testcase_38 AC 40 ms
60,288 KB
testcase_39 AC 41 ms
61,952 KB
testcase_40 AC 67 ms
88,448 KB
testcase_41 AC 51 ms
73,088 KB
testcase_42 AC 87 ms
107,776 KB
testcase_43 AC 72 ms
78,848 KB
testcase_44 AC 83 ms
104,332 KB
testcase_45 AC 45 ms
67,072 KB
testcase_46 AC 90 ms
107,264 KB
testcase_47 AC 66 ms
89,984 KB
testcase_48 AC 44 ms
66,304 KB
testcase_49 AC 78 ms
99,100 KB
testcase_50 AC 33 ms
52,224 KB
testcase_51 AC 33 ms
51,712 KB
testcase_52 AC 34 ms
51,712 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(H[i],ma)
    if H[i+1]-ma>S*B:
        print('No')
        exit(0)
print('Yes')
0