結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,624 KB
testcase_01 AC 30 ms
10,496 KB
testcase_02 AC 31 ms
10,496 KB
testcase_03 AC 32 ms
10,752 KB
testcase_04 AC 33 ms
10,368 KB
testcase_05 AC 29 ms
10,752 KB
testcase_06 AC 30 ms
10,496 KB
testcase_07 AC 30 ms
10,496 KB
testcase_08 AC 30 ms
10,752 KB
testcase_09 AC 30 ms
10,752 KB
testcase_10 AC 30 ms
10,496 KB
testcase_11 AC 30 ms
10,624 KB
testcase_12 AC 30 ms
10,624 KB
testcase_13 AC 138 ms
24,880 KB
testcase_14 AC 160 ms
24,384 KB
testcase_15 AC 134 ms
24,512 KB
testcase_16 AC 40 ms
11,776 KB
testcase_17 AC 115 ms
20,340 KB
testcase_18 AC 34 ms
11,136 KB
testcase_19 AC 47 ms
12,032 KB
testcase_20 AC 156 ms
27,312 KB
testcase_21 AC 59 ms
13,884 KB
testcase_22 AC 190 ms
24,356 KB
testcase_23 AC 198 ms
22,172 KB
testcase_24 AC 78 ms
16,900 KB
testcase_25 AC 160 ms
27,948 KB
testcase_26 AC 172 ms
29,264 KB
testcase_27 AC 165 ms
28,180 KB
testcase_28 AC 199 ms
32,508 KB
testcase_29 AC 194 ms
32,384 KB
testcase_30 AC 224 ms
32,340 KB
testcase_31 AC 196 ms
32,640 KB
testcase_32 AC 199 ms
32,384 KB
testcase_33 AC 232 ms
32,512 KB
testcase_34 AC 226 ms
32,380 KB
testcase_35 AC 194 ms
32,508 KB
testcase_36 AC 198 ms
32,384 KB
testcase_37 AC 256 ms
32,512 KB
testcase_38 AC 31 ms
10,496 KB
testcase_39 WA -
testcase_40 WA -
権限があれば一括ダウンロードができます

ソースコード

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; c += 1; m -= i+1
print("Yes" if m >= 0 else "No")
0