結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 27 ms
10,496 KB
testcase_01 AC 28 ms
10,624 KB
testcase_02 AC 27 ms
10,624 KB
testcase_03 AC 27 ms
10,496 KB
testcase_04 AC 27 ms
10,624 KB
testcase_05 AC 28 ms
10,496 KB
testcase_06 AC 31 ms
10,752 KB
testcase_07 AC 29 ms
10,624 KB
testcase_08 AC 27 ms
10,624 KB
testcase_09 AC 27 ms
10,624 KB
testcase_10 AC 26 ms
10,496 KB
testcase_11 AC 25 ms
10,624 KB
testcase_12 AC 25 ms
10,624 KB
testcase_13 AC 148 ms
20,992 KB
testcase_14 AC 168 ms
20,864 KB
testcase_15 AC 144 ms
20,864 KB
testcase_16 AC 40 ms
11,648 KB
testcase_17 AC 128 ms
17,664 KB
testcase_18 AC 34 ms
10,880 KB
testcase_19 AC 48 ms
11,648 KB
testcase_20 AC 182 ms
23,028 KB
testcase_21 AC 64 ms
13,056 KB
testcase_22 AC 199 ms
20,724 KB
testcase_23 AC 223 ms
19,328 KB
testcase_24 AC 83 ms
15,104 KB
testcase_25 AC 196 ms
23,552 KB
testcase_26 AC 209 ms
24,436 KB
testcase_27 AC 205 ms
23,416 KB
testcase_28 AC 234 ms
26,740 KB
testcase_29 AC 234 ms
26,740 KB
testcase_30 AC 262 ms
26,612 KB
testcase_31 AC 221 ms
26,740 KB
testcase_32 AC 230 ms
26,736 KB
testcase_33 AC 266 ms
26,608 KB
testcase_34 AC 268 ms
26,608 KB
testcase_35 AC 229 ms
26,740 KB
testcase_36 AC 226 ms
26,864 KB
testcase_37 AC 313 ms
26,612 KB
testcase_38 AC 26 ms
10,752 KB
testcase_39 AC 26 ms
10,496 KB
testcase_40 AC 28 ms
10,496 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