結果

問題 No.2056 非力なレッド
ユーザー H20H20
提出日時 2022-08-26 22:03:35
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 117 ms / 2,000 ms
コード長 250 bytes
コンパイル時間 182 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 103,680 KB
最終ジャッジ日時 2024-10-13 22:39:49
合計ジャッジ時間 4,689 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 38
権限があれば一括ダウンロードができます

ソースコード

diff #

N,X,M = map(int,input().split())
A = list(map(int,input().split()))
cnt = 0
for i in reversed(range(N)):
    a = A[i]
    i+=1
    while a>>cnt >= X and M>=0:
        cnt+=1
        M-=i
    if M<0:
        print('No')
        exit()
print('Yes')



0