結果

問題 No.2922 Rose Garden
ユーザー lif4635lif4635
提出日時 2024-10-13 02:11:22
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 91 ms / 3,000 ms
コード長 760 bytes
コンパイル時間 237 ms
コンパイル使用メモリ 82,444 KB
実行使用メモリ 107,960 KB
最終ジャッジ日時 2024-10-13 02:11:28
合計ジャッジ時間 5,102 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 63 ms
88,424 KB
testcase_01 AC 52 ms
77,748 KB
testcase_02 AC 62 ms
87,300 KB
testcase_03 AC 86 ms
107,116 KB
testcase_04 AC 62 ms
86,440 KB
testcase_05 AC 59 ms
83,856 KB
testcase_06 AC 56 ms
76,460 KB
testcase_07 AC 74 ms
97,872 KB
testcase_08 AC 45 ms
68,336 KB
testcase_09 AC 73 ms
101,788 KB
testcase_10 AC 49 ms
72,480 KB
testcase_11 AC 44 ms
67,764 KB
testcase_12 AC 60 ms
86,908 KB
testcase_13 AC 69 ms
94,212 KB
testcase_14 AC 43 ms
65,912 KB
testcase_15 AC 59 ms
84,188 KB
testcase_16 AC 67 ms
93,080 KB
testcase_17 AC 79 ms
104,192 KB
testcase_18 AC 41 ms
62,688 KB
testcase_19 AC 54 ms
79,520 KB
testcase_20 AC 63 ms
89,924 KB
testcase_21 AC 76 ms
102,420 KB
testcase_22 AC 58 ms
83,428 KB
testcase_23 AC 78 ms
98,940 KB
testcase_24 AC 47 ms
66,208 KB
testcase_25 AC 56 ms
81,980 KB
testcase_26 AC 64 ms
91,420 KB
testcase_27 AC 68 ms
94,772 KB
testcase_28 AC 65 ms
91,372 KB
testcase_29 AC 62 ms
87,348 KB
testcase_30 AC 39 ms
62,144 KB
testcase_31 AC 40 ms
60,396 KB
testcase_32 AC 38 ms
60,312 KB
testcase_33 AC 37 ms
59,844 KB
testcase_34 AC 38 ms
62,028 KB
testcase_35 AC 37 ms
60,196 KB
testcase_36 AC 38 ms
63,800 KB
testcase_37 AC 41 ms
64,080 KB
testcase_38 AC 42 ms
62,440 KB
testcase_39 AC 42 ms
62,792 KB
testcase_40 AC 66 ms
90,180 KB
testcase_41 AC 54 ms
73,752 KB
testcase_42 AC 81 ms
107,960 KB
testcase_43 AC 53 ms
79,340 KB
testcase_44 AC 79 ms
104,508 KB
testcase_45 AC 45 ms
67,904 KB
testcase_46 AC 91 ms
101,688 KB
testcase_47 AC 64 ms
90,784 KB
testcase_48 AC 44 ms
67,080 KB
testcase_49 AC 73 ms
98,728 KB
testcase_50 AC 33 ms
53,084 KB
testcase_51 AC 33 ms
52,552 KB
testcase_52 AC 34 ms
53,352 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

"""input"""
#int-input
# input = sys.stdin.readline
def II(): return int(input())
def MI(): return map(int, input().split())
def LI(): return list(MI())
#str-input
def SI(): return input()
def MSI(): return input().split()
def SI_L(): return list(SI())
def SI_LI(): return list(map(int, SI()))
#multiple-input
def LLI(n): return [LI() for _ in range(n)]
def LSI(n): return [SI() for _ in range(n)]
#1-indexを0-indexでinput
def MI_1(): return map(lambda x:int(x)-1, input().split())
def TI_1(): return tuple(MI_1())
def LI_1(): return list(MI_1())


n,s,b = MI()
h = LI()

now = h[0]
for i in range(n):
    if now <= h[i]:
        if (h[i]-now-1)//b+1 > s:
            print("No")
            exit()
        else:
            now = h[i]
else:
    print("Yes")
0