結果

問題 No.2056 非力なレッド
ユーザー taiga0629kyoprotaiga0629kyopro
提出日時 2022-08-22 05:38:19
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 345 bytes
コンパイル時間 269 ms
コンパイル使用メモリ 82,232 KB
実行使用メモリ 107,320 KB
最終ジャッジ日時 2024-10-10 06:30:03
合計ジャッジ時間 4,763 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
53,012 KB
testcase_01 AC 38 ms
53,564 KB
testcase_02 AC 38 ms
52,072 KB
testcase_03 AC 37 ms
52,832 KB
testcase_04 AC 38 ms
51,880 KB
testcase_05 AC 37 ms
52,376 KB
testcase_06 AC 37 ms
52,764 KB
testcase_07 AC 37 ms
52,720 KB
testcase_08 AC 37 ms
52,036 KB
testcase_09 AC 37 ms
52,184 KB
testcase_10 AC 38 ms
52,476 KB
testcase_11 AC 38 ms
52,368 KB
testcase_12 AC 38 ms
53,136 KB
testcase_13 AC 77 ms
93,688 KB
testcase_14 AC 86 ms
97,276 KB
testcase_15 AC 74 ms
93,940 KB
testcase_16 AC 47 ms
64,904 KB
testcase_17 AC 70 ms
85,864 KB
testcase_18 AC 50 ms
64,936 KB
testcase_19 AC 50 ms
65,964 KB
testcase_20 AC 81 ms
101,324 KB
testcase_21 AC 56 ms
70,292 KB
testcase_22 AC 79 ms
95,352 KB
testcase_23 AC 79 ms
91,960 KB
testcase_24 AC 58 ms
76,704 KB
testcase_25 AC 85 ms
102,524 KB
testcase_26 AC 95 ms
107,320 KB
testcase_27 AC 87 ms
102,200 KB
testcase_28 AC 101 ms
102,384 KB
testcase_29 AC 107 ms
102,228 KB
testcase_30 AC 107 ms
102,380 KB
testcase_31 AC 102 ms
102,356 KB
testcase_32 AC 104 ms
102,472 KB
testcase_33 AC 109 ms
102,080 KB
testcase_34 AC 112 ms
102,108 KB
testcase_35 AC 103 ms
102,460 KB
testcase_36 AC 106 ms
102,292 KB
testcase_37 AC 110 ms
102,488 KB
testcase_38 AC 38 ms
53,472 KB
testcase_39 WA -
testcase_40 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

def fake2(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(fake2(n,x,m,a))
0