結果

問題 No.2056 非力なレッド
ユーザー V_MelvilleV_Melville
提出日時 2022-08-27 18:24:06
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 97 ms / 2,000 ms
コード長 239 bytes
コンパイル時間 391 ms
コンパイル使用メモリ 82,504 KB
実行使用メモリ 103,596 KB
最終ジャッジ日時 2024-10-14 15:14:24
合計ジャッジ時間 5,654 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
52,824 KB
testcase_01 AC 37 ms
52,272 KB
testcase_02 AC 38 ms
53,072 KB
testcase_03 AC 37 ms
52,400 KB
testcase_04 AC 35 ms
51,832 KB
testcase_05 AC 38 ms
52,696 KB
testcase_06 AC 35 ms
53,504 KB
testcase_07 AC 35 ms
52,500 KB
testcase_08 AC 33 ms
52,140 KB
testcase_09 AC 35 ms
53,840 KB
testcase_10 AC 34 ms
53,472 KB
testcase_11 AC 34 ms
52,300 KB
testcase_12 AC 33 ms
52,276 KB
testcase_13 AC 83 ms
91,348 KB
testcase_14 AC 76 ms
92,300 KB
testcase_15 AC 68 ms
91,352 KB
testcase_16 AC 41 ms
62,824 KB
testcase_17 AC 60 ms
83,376 KB
testcase_18 AC 41 ms
61,568 KB
testcase_19 AC 45 ms
65,344 KB
testcase_20 AC 72 ms
99,544 KB
testcase_21 AC 47 ms
68,728 KB
testcase_22 AC 70 ms
92,720 KB
testcase_23 AC 69 ms
88,900 KB
testcase_24 AC 53 ms
73,640 KB
testcase_25 AC 77 ms
100,320 KB
testcase_26 AC 77 ms
103,596 KB
testcase_27 AC 75 ms
100,520 KB
testcase_28 AC 92 ms
101,860 KB
testcase_29 AC 92 ms
102,060 KB
testcase_30 AC 96 ms
101,848 KB
testcase_31 AC 97 ms
101,980 KB
testcase_32 AC 93 ms
101,864 KB
testcase_33 AC 95 ms
101,952 KB
testcase_34 AC 96 ms
101,944 KB
testcase_35 AC 93 ms
101,908 KB
testcase_36 AC 95 ms
101,916 KB
testcase_37 AC 96 ms
101,588 KB
testcase_38 AC 35 ms
52,680 KB
testcase_39 AC 34 ms
51,960 KB
testcase_40 AC 35 ms
52,820 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, x, m = map(int, input().split())
a = list(map(int, input().split()))
for i in range(n-1, -1, -1):
    while a[i] >= x:
        for j in range(i+1):
            a[j] /= 2
        m -= i+1
if m >= 0:
    print("Yes")
else:
    print("No")
0