結果

問題 No.2922 Rose Garden
ユーザー 電たくT電たくT
提出日時 2024-10-12 14:56:55
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 311 bytes
コンパイル時間 496 ms
コンパイル使用メモリ 81,840 KB
実行使用メモリ 107,836 KB
最終ジャッジ日時 2024-10-12 14:57:10
合計ジャッジ時間 5,576 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 66 ms
86,144 KB
testcase_01 AC 56 ms
75,904 KB
testcase_02 AC 64 ms
85,504 KB
testcase_03 AC 87 ms
107,836 KB
testcase_04 AC 65 ms
86,656 KB
testcase_05 AC 65 ms
83,072 KB
testcase_06 AC 54 ms
74,212 KB
testcase_07 AC 100 ms
97,668 KB
testcase_08 AC 49 ms
66,816 KB
testcase_09 AC 79 ms
102,144 KB
testcase_10 AC 52 ms
72,320 KB
testcase_11 AC 47 ms
66,560 KB
testcase_12 AC 64 ms
86,272 KB
testcase_13 AC 71 ms
93,440 KB
testcase_14 AC 45 ms
65,024 KB
testcase_15 AC 62 ms
83,968 KB
testcase_16 AC 71 ms
92,544 KB
testcase_17 AC 82 ms
102,912 KB
testcase_18 AC 45 ms
61,952 KB
testcase_19 AC 61 ms
78,720 KB
testcase_20 AC 69 ms
89,600 KB
testcase_21 AC 81 ms
102,272 KB
testcase_22 AC 64 ms
83,116 KB
testcase_23 AC 93 ms
97,920 KB
testcase_24 AC 46 ms
65,408 KB
testcase_25 AC 73 ms
80,732 KB
testcase_26 AC 71 ms
90,368 KB
testcase_27 AC 75 ms
94,080 KB
testcase_28 AC 71 ms
90,240 KB
testcase_29 AC 69 ms
86,144 KB
testcase_30 AC 41 ms
60,544 KB
testcase_31 AC 41 ms
59,136 KB
testcase_32 AC 41 ms
59,520 KB
testcase_33 AC 41 ms
58,368 KB
testcase_34 AC 43 ms
61,184 KB
testcase_35 AC 41 ms
59,092 KB
testcase_36 AC 43 ms
61,824 KB
testcase_37 AC 43 ms
62,976 KB
testcase_38 AC 42 ms
60,160 KB
testcase_39 AC 42 ms
62,464 KB
testcase_40 WA -
testcase_41 WA -
testcase_42 WA -
testcase_43 WA -
testcase_44 WA -
testcase_45 WA -
testcase_46 WA -
testcase_47 WA -
testcase_48 WA -
testcase_49 WA -
testcase_50 AC 37 ms
51,840 KB
testcase_51 WA -
testcase_52 AC 38 ms
51,840 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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