結果

問題 No.2056 非力なレッド
ユーザー taiga0629kyoprotaiga0629kyopro
提出日時 2022-08-22 00:48:48
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 121 ms / 2,000 ms
コード長 344 bytes
コンパイル時間 346 ms
コンパイル使用メモリ 82,340 KB
実行使用メモリ 106,836 KB
最終ジャッジ日時 2024-10-10 06:29:58
合計ジャッジ時間 4,616 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
52,920 KB
testcase_01 AC 40 ms
52,940 KB
testcase_02 AC 38 ms
52,900 KB
testcase_03 AC 38 ms
52,392 KB
testcase_04 AC 38 ms
52,324 KB
testcase_05 AC 38 ms
53,072 KB
testcase_06 AC 38 ms
53,896 KB
testcase_07 AC 38 ms
52,816 KB
testcase_08 AC 40 ms
52,532 KB
testcase_09 AC 39 ms
52,960 KB
testcase_10 AC 38 ms
52,796 KB
testcase_11 AC 38 ms
52,212 KB
testcase_12 AC 38 ms
52,420 KB
testcase_13 AC 80 ms
93,672 KB
testcase_14 AC 89 ms
97,176 KB
testcase_15 AC 80 ms
93,976 KB
testcase_16 AC 49 ms
63,960 KB
testcase_17 AC 73 ms
86,848 KB
testcase_18 AC 51 ms
63,476 KB
testcase_19 AC 51 ms
66,080 KB
testcase_20 AC 85 ms
101,136 KB
testcase_21 AC 58 ms
70,356 KB
testcase_22 AC 83 ms
95,112 KB
testcase_23 AC 79 ms
91,552 KB
testcase_24 AC 60 ms
75,460 KB
testcase_25 AC 88 ms
102,648 KB
testcase_26 AC 99 ms
106,836 KB
testcase_27 AC 90 ms
102,296 KB
testcase_28 AC 104 ms
101,972 KB
testcase_29 AC 109 ms
102,464 KB
testcase_30 AC 111 ms
102,088 KB
testcase_31 AC 107 ms
102,088 KB
testcase_32 AC 106 ms
102,240 KB
testcase_33 AC 113 ms
102,216 KB
testcase_34 AC 121 ms
102,216 KB
testcase_35 AC 105 ms
102,076 KB
testcase_36 AC 106 ms
102,364 KB
testcase_37 AC 112 ms
102,096 KB
testcase_38 AC 37 ms
51,996 KB
testcase_39 AC 39 ms
52,412 KB
testcase_40 AC 38 ms
51,900 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def sol1(n,x,m,A):
    a=A[:]
    need=[0]*(n+1)
    for i in range(n):
        while a[i]>=x:
            need[i]+=1
            a[i]//=2
    for i in range(n-1,-1,-1):
        need[i]=max(need[i],need[i+1])
    if sum(need)<=m:return "Yes"
    return "No"
n,x,m=map(int,input().split())
a=list(map(int,input().split()))
print(sol1(n,x,m,a))
0