結果

問題 No.2056 非力なレッド
ユーザー Akijin_007Akijin_007
提出日時 2022-08-26 21:50:13
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 468 bytes
コンパイル時間 166 ms
コンパイル使用メモリ 82,128 KB
実行使用メモリ 102,144 KB
最終ジャッジ日時 2024-10-13 22:23:50
合計ジャッジ時間 4,242 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
51,840 KB
testcase_01 AC 39 ms
51,328 KB
testcase_02 AC 38 ms
51,328 KB
testcase_03 AC 35 ms
51,840 KB
testcase_04 AC 36 ms
51,328 KB
testcase_05 AC 42 ms
51,840 KB
testcase_06 AC 36 ms
51,456 KB
testcase_07 AC 35 ms
51,328 KB
testcase_08 AC 36 ms
52,224 KB
testcase_09 AC 34 ms
52,224 KB
testcase_10 AC 36 ms
51,712 KB
testcase_11 AC 34 ms
51,456 KB
testcase_12 AC 37 ms
51,840 KB
testcase_13 AC 86 ms
89,728 KB
testcase_14 AC 70 ms
89,984 KB
testcase_15 AC 68 ms
89,600 KB
testcase_16 AC 44 ms
61,696 KB
testcase_17 AC 60 ms
80,384 KB
testcase_18 AC 41 ms
60,928 KB
testcase_19 AC 45 ms
63,872 KB
testcase_20 AC 76 ms
97,152 KB
testcase_21 AC 48 ms
67,328 KB
testcase_22 AC 68 ms
90,112 KB
testcase_23 AC 65 ms
86,400 KB
testcase_24 AC 51 ms
72,704 KB
testcase_25 AC 73 ms
98,048 KB
testcase_26 AC 77 ms
102,144 KB
testcase_27 AC 74 ms
98,432 KB
testcase_28 AC 91 ms
101,760 KB
testcase_29 AC 95 ms
101,976 KB
testcase_30 AC 95 ms
101,760 KB
testcase_31 AC 96 ms
101,632 KB
testcase_32 AC 93 ms
101,916 KB
testcase_33 AC 96 ms
101,888 KB
testcase_34 AC 93 ms
101,860 KB
testcase_35 AC 91 ms
101,924 KB
testcase_36 AC 98 ms
101,840 KB
testcase_37 AC 96 ms
102,016 KB
testcase_38 AC 36 ms
51,840 KB
testcase_39 WA -
testcase_40 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#int(input())
#map(int, input().split())
#list(map(int, input().split()))

N, X, M = map(int, input().split())
A = list(map(int, input().split()))

f = 0
for i in range(N):
    j = N-1-i
    while f == 0:
        if A[j] > X:
            for k in range(j+1):
                A[k] = A[k] >> 1
            M -= j+1
        else:
            break
        if M < 0:
            f = 1
            break
        # print(A)

if f == 1:
    print("No")
else:
    print("Yes")
0