結果

問題 No.2056 非力なレッド
ユーザー vwxyzvwxyz
提出日時 2022-09-06 15:17:29
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 322 ms / 2,000 ms
コード長 365 bytes
コンパイル時間 100 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 26,868 KB
最終ジャッジ日時 2024-05-01 12:09:43
合計ジャッジ時間 8,093 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,624 KB
testcase_01 AC 30 ms
10,752 KB
testcase_02 AC 30 ms
10,624 KB
testcase_03 AC 31 ms
10,624 KB
testcase_04 AC 31 ms
10,624 KB
testcase_05 AC 31 ms
10,624 KB
testcase_06 AC 31 ms
10,752 KB
testcase_07 AC 30 ms
10,624 KB
testcase_08 AC 30 ms
10,624 KB
testcase_09 AC 30 ms
10,624 KB
testcase_10 AC 30 ms
10,624 KB
testcase_11 AC 31 ms
10,624 KB
testcase_12 AC 29 ms
10,752 KB
testcase_13 AC 179 ms
21,120 KB
testcase_14 AC 192 ms
20,864 KB
testcase_15 AC 161 ms
20,992 KB
testcase_16 AC 42 ms
11,520 KB
testcase_17 AC 130 ms
17,664 KB
testcase_18 AC 36 ms
11,008 KB
testcase_19 AC 50 ms
11,776 KB
testcase_20 AC 191 ms
22,900 KB
testcase_21 AC 71 ms
13,184 KB
testcase_22 AC 225 ms
20,724 KB
testcase_23 AC 242 ms
19,200 KB
testcase_24 AC 89 ms
15,232 KB
testcase_25 AC 198 ms
23,552 KB
testcase_26 AC 220 ms
24,308 KB
testcase_27 AC 211 ms
23,416 KB
testcase_28 AC 236 ms
26,736 KB
testcase_29 AC 261 ms
26,736 KB
testcase_30 AC 270 ms
26,736 KB
testcase_31 AC 242 ms
26,864 KB
testcase_32 AC 250 ms
26,740 KB
testcase_33 AC 292 ms
26,864 KB
testcase_34 AC 289 ms
26,864 KB
testcase_35 AC 237 ms
26,736 KB
testcase_36 AC 239 ms
26,736 KB
testcase_37 AC 322 ms
26,868 KB
testcase_38 AC 30 ms
10,624 KB
testcase_39 AC 29 ms
10,624 KB
testcase_40 AC 29 ms
10,624 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict
import sys
readline=sys.stdin.readline
write=sys.stdout.write

N,X,M=map(int,readline().split())
cnt=[]
for a in map(int,readline().split()):
    c=0
    while a>=X:
        a//=2
        c+=1
    cnt.append(c)
for i in range(N-2,-1,-1):
    cnt[i]=max(cnt[i],cnt[i+1])
if sum(cnt)<=M:
    ans="Yes"
else:
    ans="No"
print(ans)
0