結果

問題 No.2056 非力なレッド
ユーザー mrngmrng
提出日時 2022-08-27 14:20:17
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 101 ms / 2,000 ms
コード長 285 bytes
コンパイル時間 365 ms
コンパイル使用メモリ 82,052 KB
実行使用メモリ 102,236 KB
最終ジャッジ日時 2024-10-14 12:13:46
合計ジャッジ時間 5,616 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,744 KB
testcase_01 AC 38 ms
52,076 KB
testcase_02 AC 38 ms
52,440 KB
testcase_03 AC 38 ms
51,816 KB
testcase_04 AC 36 ms
51,756 KB
testcase_05 AC 37 ms
52,384 KB
testcase_06 AC 37 ms
51,968 KB
testcase_07 AC 37 ms
51,764 KB
testcase_08 AC 38 ms
53,556 KB
testcase_09 AC 37 ms
52,160 KB
testcase_10 AC 38 ms
52,208 KB
testcase_11 AC 38 ms
52,304 KB
testcase_12 AC 36 ms
52,304 KB
testcase_13 AC 69 ms
91,024 KB
testcase_14 AC 65 ms
88,792 KB
testcase_15 AC 71 ms
91,896 KB
testcase_16 AC 45 ms
62,284 KB
testcase_17 AC 60 ms
80,168 KB
testcase_18 AC 45 ms
61,492 KB
testcase_19 AC 49 ms
66,220 KB
testcase_20 AC 77 ms
99,672 KB
testcase_21 AC 51 ms
68,264 KB
testcase_22 AC 67 ms
89,284 KB
testcase_23 AC 63 ms
84,720 KB
testcase_24 AC 55 ms
74,008 KB
testcase_25 AC 78 ms
98,212 KB
testcase_26 AC 81 ms
102,236 KB
testcase_27 AC 80 ms
98,752 KB
testcase_28 AC 99 ms
101,980 KB
testcase_29 AC 98 ms
101,776 KB
testcase_30 AC 98 ms
101,848 KB
testcase_31 AC 96 ms
101,612 KB
testcase_32 AC 95 ms
101,772 KB
testcase_33 AC 101 ms
101,916 KB
testcase_34 AC 92 ms
101,976 KB
testcase_35 AC 97 ms
101,848 KB
testcase_36 AC 94 ms
101,656 KB
testcase_37 AC 94 ms
101,620 KB
testcase_38 AC 37 ms
52,084 KB
testcase_39 AC 37 ms
52,812 KB
testcase_40 AC 38 ms
51,708 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
		if a[i]<x:
			break
	else:
		while a[i]>=x and m>=i+1:
			c += 1
			a[i] //= 2
			m -= i+1
		if a[i]>=x:
			print('No')
			break
else:
	print('Yes')
0