結果

問題 No.2056 非力なレッド
ユーザー ニックネームニックネーム
提出日時 2022-08-26 21:31:01
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 238 ms / 2,000 ms
コード長 223 bytes
コンパイル時間 122 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 32,640 KB
最終ジャッジ日時 2024-10-13 21:56:14
合計ジャッジ時間 5,593 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 26 ms
10,624 KB
testcase_01 AC 26 ms
10,624 KB
testcase_02 AC 28 ms
10,624 KB
testcase_03 AC 29 ms
10,368 KB
testcase_04 AC 28 ms
10,752 KB
testcase_05 AC 26 ms
10,752 KB
testcase_06 AC 26 ms
10,624 KB
testcase_07 AC 26 ms
10,496 KB
testcase_08 AC 31 ms
10,624 KB
testcase_09 AC 27 ms
10,752 KB
testcase_10 AC 26 ms
10,496 KB
testcase_11 AC 27 ms
10,368 KB
testcase_12 AC 28 ms
10,368 KB
testcase_13 AC 124 ms
25,004 KB
testcase_14 AC 142 ms
24,512 KB
testcase_15 AC 127 ms
24,388 KB
testcase_16 AC 35 ms
11,904 KB
testcase_17 AC 107 ms
20,084 KB
testcase_18 AC 32 ms
11,136 KB
testcase_19 AC 40 ms
12,160 KB
testcase_20 AC 138 ms
27,304 KB
testcase_21 AC 56 ms
13,884 KB
testcase_22 AC 182 ms
24,336 KB
testcase_23 AC 182 ms
22,432 KB
testcase_24 AC 68 ms
16,772 KB
testcase_25 AC 147 ms
28,016 KB
testcase_26 AC 169 ms
29,136 KB
testcase_27 AC 151 ms
28,308 KB
testcase_28 AC 189 ms
32,512 KB
testcase_29 AC 187 ms
32,388 KB
testcase_30 AC 204 ms
32,384 KB
testcase_31 AC 179 ms
32,512 KB
testcase_32 AC 174 ms
32,636 KB
testcase_33 AC 220 ms
32,516 KB
testcase_34 AC 211 ms
32,640 KB
testcase_35 AC 178 ms
32,404 KB
testcase_36 AC 186 ms
32,384 KB
testcase_37 AC 238 ms
32,636 KB
testcase_38 AC 28 ms
10,752 KB
testcase_39 AC 26 ms
10,496 KB
testcase_40 AC 25 ms
10,624 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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