結果

問題 No.2056 非力なレッド
ユーザー SchneeSchnee
提出日時 2022-09-01 22:16:07
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
AC  
実行時間 201 ms / 2,000 ms
コード長 234 bytes
コンパイル時間 216 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 27,396 KB
最終ジャッジ日時 2024-11-14 13:55:17
合計ジャッジ時間 7,110 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 38
権限があれば一括ダウンロードができます

ソースコード

diff #

n,x,m=map(int,input().split())
def f(y):
    c=int((y:=int(y)//x)>0)
    while(y:=y//2)>0:
        c+=1
    return c
s=0
for e in map(f,input().split()[::-1]):
    if e>s:
        m-=(e-s)*n
        s=e
    n-=1
print("YNeos"[m<0::2])
0