結果

問題 No.2056 非力なレッド
ユーザー ytftytft
提出日時 2022-09-01 15:18:16
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 115 ms / 2,000 ms
コード長 252 bytes
コンパイル時間 235 ms
コンパイル使用メモリ 82,100 KB
実行使用メモリ 107,000 KB
最終ジャッジ日時 2024-11-14 06:30:25
合計ジャッジ時間 5,514 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 38
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input=lambda:sys.stdin.readline().rstrip()
N,X,M=map(int,input().split())
A=list(map(int,input().split()))+[0]
for i in range(N-1,-1,-1):
	temp=0
	while A[i]>=X:
		A[i]//=2
		temp+=1
	A[i]=max(temp,A[i+1])
	M-=A[i]
print(["No","Yes"][M>=0])
0