結果

問題 No.2922 Rose Garden
ユーザー KudeKude
提出日時 2024-10-12 14:41:14
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 92 ms / 3,000 ms
コード長 200 bytes
コンパイル時間 194 ms
コンパイル使用メモリ 82,248 KB
実行使用メモリ 107,324 KB
最終ジャッジ日時 2024-10-12 14:41:24
合計ジャッジ時間 5,333 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 67 ms
87,380 KB
testcase_01 AC 58 ms
77,020 KB
testcase_02 AC 68 ms
87,236 KB
testcase_03 AC 90 ms
107,324 KB
testcase_04 AC 66 ms
86,420 KB
testcase_05 AC 64 ms
84,364 KB
testcase_06 AC 56 ms
76,068 KB
testcase_07 AC 78 ms
98,700 KB
testcase_08 AC 50 ms
68,584 KB
testcase_09 AC 80 ms
101,648 KB
testcase_10 AC 52 ms
73,180 KB
testcase_11 AC 49 ms
68,188 KB
testcase_12 AC 67 ms
86,088 KB
testcase_13 AC 74 ms
94,416 KB
testcase_14 AC 49 ms
67,204 KB
testcase_15 AC 64 ms
84,500 KB
testcase_16 AC 73 ms
92,464 KB
testcase_17 AC 88 ms
103,892 KB
testcase_18 AC 45 ms
62,932 KB
testcase_19 AC 62 ms
80,288 KB
testcase_20 AC 70 ms
89,592 KB
testcase_21 AC 84 ms
102,020 KB
testcase_22 AC 64 ms
83,672 KB
testcase_23 AC 79 ms
98,508 KB
testcase_24 AC 46 ms
66,260 KB
testcase_25 AC 62 ms
80,676 KB
testcase_26 AC 71 ms
90,312 KB
testcase_27 AC 76 ms
95,292 KB
testcase_28 AC 72 ms
91,524 KB
testcase_29 AC 69 ms
87,688 KB
testcase_30 AC 43 ms
61,808 KB
testcase_31 AC 44 ms
60,612 KB
testcase_32 AC 42 ms
59,788 KB
testcase_33 AC 43 ms
59,480 KB
testcase_34 AC 43 ms
61,536 KB
testcase_35 AC 44 ms
60,996 KB
testcase_36 AC 44 ms
62,780 KB
testcase_37 AC 46 ms
63,336 KB
testcase_38 AC 43 ms
61,964 KB
testcase_39 AC 44 ms
62,740 KB
testcase_40 AC 70 ms
89,568 KB
testcase_41 AC 56 ms
74,552 KB
testcase_42 AC 92 ms
107,232 KB
testcase_43 AC 62 ms
78,736 KB
testcase_44 AC 84 ms
103,100 KB
testcase_45 AC 50 ms
67,544 KB
testcase_46 AC 92 ms
107,240 KB
testcase_47 AC 70 ms
91,328 KB
testcase_48 AC 48 ms
67,388 KB
testcase_49 AC 80 ms
98,956 KB
testcase_50 AC 38 ms
52,192 KB
testcase_51 AC 38 ms
52,484 KB
testcase_52 AC 37 ms
51,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, s, b = map(int, input().split())
h = list(map(int, input().split()))
now = h[0]
for hi in h:
    if now < hi:
        print('No')
        break
    now = max(s * b + hi, now)
else:
    print('Yes')
0