結果

問題 No.2056 非力なレッド
ユーザー simansiman
提出日時 2022-08-28 12:21:57
言語 Ruby
(3.3.0)
結果
AC  
実行時間 250 ms / 2,000 ms
コード長 263 bytes
コンパイル時間 124 ms
コンパイル使用メモリ 7,552 KB
実行使用メモリ 26,240 KB
最終ジャッジ日時 2024-10-15 11:11:41
合計ジャッジ時間 8,200 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 88 ms
12,032 KB
testcase_01 AC 89 ms
12,160 KB
testcase_02 AC 87 ms
12,160 KB
testcase_03 AC 87 ms
12,288 KB
testcase_04 AC 89 ms
12,288 KB
testcase_05 AC 92 ms
12,160 KB
testcase_06 AC 90 ms
12,288 KB
testcase_07 AC 87 ms
12,160 KB
testcase_08 AC 89 ms
12,288 KB
testcase_09 AC 90 ms
12,160 KB
testcase_10 AC 88 ms
12,160 KB
testcase_11 AC 86 ms
12,160 KB
testcase_12 AC 88 ms
12,032 KB
testcase_13 AC 172 ms
21,248 KB
testcase_14 AC 183 ms
21,120 KB
testcase_15 AC 170 ms
21,376 KB
testcase_16 AC 97 ms
12,672 KB
testcase_17 AC 154 ms
18,048 KB
testcase_18 AC 92 ms
12,288 KB
testcase_19 AC 101 ms
12,928 KB
testcase_20 AC 185 ms
22,912 KB
testcase_21 AC 112 ms
13,824 KB
testcase_22 AC 201 ms
21,120 KB
testcase_23 AC 200 ms
19,712 KB
testcase_24 AC 127 ms
15,872 KB
testcase_25 AC 190 ms
23,296 KB
testcase_26 AC 199 ms
24,192 KB
testcase_27 AC 193 ms
23,424 KB
testcase_28 AC 220 ms
25,856 KB
testcase_29 AC 220 ms
26,112 KB
testcase_30 AC 231 ms
25,856 KB
testcase_31 AC 221 ms
25,984 KB
testcase_32 AC 220 ms
25,856 KB
testcase_33 AC 234 ms
25,856 KB
testcase_34 AC 232 ms
25,984 KB
testcase_35 AC 216 ms
25,984 KB
testcase_36 AC 220 ms
26,112 KB
testcase_37 AC 250 ms
26,240 KB
testcase_38 AC 87 ms
12,288 KB
testcase_39 AC 89 ms
12,160 KB
testcase_40 AC 88 ms
12,160 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

N, X, M = gets.split.map(&:to_i)
A = gets.split.map(&:to_i)

cur = 0
cost = 0

(N - 1).downto(0) do |i|
  a = A[i]
  cur.times do
    a /= 2
  end

  while a >= X
    a /= 2
    cur += 1
    cost += i + 1
  end
end

if cost <= M
  puts 'Yes'
else
  puts 'No'
end
0