結果

問題 No.2922 Rose Garden
ユーザー Polaris2124Polaris2124
提出日時 2024-10-12 14:47:08
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 745 bytes
コンパイル時間 138 ms
コンパイル使用メモリ 82,020 KB
実行使用メモリ 112,744 KB
最終ジャッジ日時 2024-10-12 14:47:21
合計ジャッジ時間 5,760 ms
ジャッジサーバーID
(参考情報)
judge / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 AC 75 ms
94,832 KB
testcase_16 AC 91 ms
96,924 KB
testcase_17 AC 99 ms
106,112 KB
testcase_18 AC 51 ms
67,740 KB
testcase_19 AC 71 ms
86,912 KB
testcase_20 AC 81 ms
94,724 KB
testcase_21 AC 96 ms
105,976 KB
testcase_22 AC 79 ms
94,956 KB
testcase_23 AC 94 ms
95,596 KB
testcase_24 AC 55 ms
70,140 KB
testcase_25 AC 74 ms
89,860 KB
testcase_26 AC 84 ms
95,956 KB
testcase_27 AC 90 ms
98,888 KB
testcase_28 AC 83 ms
95,336 KB
testcase_29 AC 87 ms
96,292 KB
testcase_30 AC 49 ms
66,840 KB
testcase_31 AC 50 ms
63,952 KB
testcase_32 AC 48 ms
64,312 KB
testcase_33 AC 48 ms
63,516 KB
testcase_34 AC 50 ms
67,156 KB
testcase_35 AC 48 ms
65,252 KB
testcase_36 AC 49 ms
67,232 KB
testcase_37 AC 57 ms
67,156 KB
testcase_38 AC 52 ms
64,832 KB
testcase_39 AC 49 ms
67,684 KB
testcase_40 AC 79 ms
92,372 KB
testcase_41 AC 64 ms
79,920 KB
testcase_42 AC 99 ms
106,884 KB
testcase_43 AC 64 ms
84,444 KB
testcase_44 AC 99 ms
106,080 KB
testcase_45 AC 61 ms
74,716 KB
testcase_46 AC 105 ms
110,884 KB
testcase_47 AC 81 ms
95,568 KB
testcase_48 AC 58 ms
73,736 KB
testcase_49 AC 94 ms
100,236 KB
testcase_50 WA -
testcase_51 WA -
testcase_52 AC 47 ms
61,576 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
import math
from itertools import product, permutations, combinations, accumulate
from heapq import heapify, heappush, heappop
from collections import deque, defaultdict, Counter
from bisect import bisect, bisect_left, bisect_right
from copy import copy, deepcopy
#from sortedcontainers import SortedSet, SortedList, SortedDict

sys.setrecursionlimit(10**7)
INF = float('inf')
LINF = 1 << 60
MOD = 10**9+7

def mii():
    return map(int, sys.stdin.readline().split())


N, S, B = mii()
H = list(mii())

Hi = [H[0]]
for i in range(1, N):
    if Hi[-1] < H[i]:
        Hi.append(H[i])

ans = True

for i in range(len(Hi)-1):
    if Hi[i+1] > Hi[i] * S*B:
        ans = False
        break

if ans:
    print("Yes")
else:
    print("No")
0