結果

問題 No.842 初詣
ユーザー gemmarogemmaro
提出日時 2019-11-04 08:24:21
言語 Ruby
(3.3.0)
結果
WA  
実行時間 -
コード長 602 bytes
コンパイル時間 145 ms
コンパイル使用メモリ 7,552 KB
実行使用メモリ 12,416 KB
最終ジャッジ日時 2024-09-14 23:36:51
合計ジャッジ時間 2,866 ms
ジャッジサーバーID
(参考情報)
judge6 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 91 ms
12,032 KB
testcase_01 AC 99 ms
12,032 KB
testcase_02 AC 93 ms
12,032 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 AC 90 ms
12,160 KB
testcase_07 AC 89 ms
12,032 KB
testcase_08 AC 89 ms
12,032 KB
testcase_09 AC 90 ms
12,032 KB
testcase_10 WA -
testcase_11 AC 94 ms
12,032 KB
testcase_12 AC 93 ms
12,160 KB
testcase_13 WA -
testcase_14 AC 93 ms
12,160 KB
testcase_15 AC 92 ms
12,160 KB
testcase_16 AC 92 ms
12,032 KB
testcase_17 AC 96 ms
12,160 KB
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 90 ms
12,160 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

# coins: [int; 6] = [500, 100, 50, 10, 5, 1]
#                      0    1   2   3  4  5
$rates = [5, 2, 5, 2, 5]
$values = [500, 100, 50, 10, 5]

def normalize coins
    5.times {|i|
        coins[4 - i] += coins[5 - i] / $rates[4 - i]
        coins[5 - i] %= $rates[4 - i]
    }
    coins
end

def is_possible coins, target
    5.times {|i|
        return false if coins[i] < target / $values[i]
        target %= $values[i]
    }
    return false if coins[5] < target
    true
end

a, b, c, d, e, f, g = gets.chomp.split.map &:to_i
puts (is_possible(normalize([a, b, c, d, e, f]), g)) ? "YES" : "NO"
0