結果

問題 No.2922 Rose Garden
ユーザー miho-4miho-4
提出日時 2024-10-12 15:09:31
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 103 ms / 3,000 ms
コード長 168 bytes
コンパイル時間 483 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 107,648 KB
最終ジャッジ日時 2024-10-12 15:09:49
合計ジャッジ時間 5,827 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 67 ms
86,144 KB
testcase_01 AC 58 ms
76,288 KB
testcase_02 AC 66 ms
85,632 KB
testcase_03 AC 103 ms
107,648 KB
testcase_04 AC 66 ms
85,888 KB
testcase_05 AC 66 ms
82,944 KB
testcase_06 AC 57 ms
73,984 KB
testcase_07 AC 78 ms
98,048 KB
testcase_08 AC 48 ms
67,200 KB
testcase_09 AC 81 ms
101,884 KB
testcase_10 AC 53 ms
72,192 KB
testcase_11 AC 49 ms
67,072 KB
testcase_12 AC 68 ms
86,400 KB
testcase_13 AC 74 ms
93,896 KB
testcase_14 AC 48 ms
65,920 KB
testcase_15 AC 65 ms
83,328 KB
testcase_16 AC 74 ms
92,672 KB
testcase_17 AC 96 ms
103,936 KB
testcase_18 AC 46 ms
61,952 KB
testcase_19 AC 61 ms
78,464 KB
testcase_20 AC 69 ms
89,472 KB
testcase_21 AC 82 ms
102,144 KB
testcase_22 AC 64 ms
83,048 KB
testcase_23 AC 78 ms
97,856 KB
testcase_24 AC 47 ms
65,664 KB
testcase_25 AC 62 ms
80,128 KB
testcase_26 AC 73 ms
90,752 KB
testcase_27 AC 76 ms
93,952 KB
testcase_28 AC 73 ms
90,112 KB
testcase_29 AC 69 ms
86,272 KB
testcase_30 AC 44 ms
60,800 KB
testcase_31 AC 43 ms
58,880 KB
testcase_32 AC 43 ms
60,032 KB
testcase_33 AC 44 ms
58,496 KB
testcase_34 AC 44 ms
60,944 KB
testcase_35 AC 43 ms
59,264 KB
testcase_36 AC 45 ms
61,952 KB
testcase_37 AC 48 ms
63,360 KB
testcase_38 AC 44 ms
60,032 KB
testcase_39 AC 44 ms
61,696 KB
testcase_40 AC 70 ms
88,704 KB
testcase_41 AC 54 ms
72,320 KB
testcase_42 AC 92 ms
107,352 KB
testcase_43 AC 60 ms
78,464 KB
testcase_44 AC 86 ms
103,808 KB
testcase_45 AC 49 ms
67,328 KB
testcase_46 AC 90 ms
107,136 KB
testcase_47 AC 70 ms
89,472 KB
testcase_48 AC 50 ms
66,688 KB
testcase_49 AC 92 ms
99,072 KB
testcase_50 AC 36 ms
51,584 KB
testcase_51 AC 38 ms
51,712 KB
testcase_52 AC 38 ms
51,712 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,s,b=map(int,input().split())
L=list(map(int,input().split()))
h=L[0]+s*b
for i in range(1,n):
	if L[i]<=h:
		h=max(h,L[i]+s*b)
	else:
		exit(print("No"))
print("Yes")
0