結果

問題 No.1015 おつりは要らないです
ユーザー yudedakoyudedako
提出日時 2022-01-26 17:59:47
言語 Scala(Beta)
(3.4.0)
結果
RE  
実行時間 -
コード長 687 bytes
コンパイル時間 9,076 ms
コンパイル使用メモリ 263,928 KB
実行使用メモリ 76,156 KB
最終ジャッジ日時 2024-06-06 00:38:57
合計ジャッジ時間 57,209 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 886 ms
63,540 KB
testcase_01 AC 899 ms
63,656 KB
testcase_02 AC 889 ms
63,628 KB
testcase_03 AC 894 ms
63,704 KB
testcase_04 AC 893 ms
63,668 KB
testcase_05 AC 886 ms
63,612 KB
testcase_06 AC 882 ms
63,420 KB
testcase_07 AC 884 ms
63,636 KB
testcase_08 AC 881 ms
63,720 KB
testcase_09 AC 899 ms
63,600 KB
testcase_10 RE -
testcase_11 RE -
testcase_12 RE -
testcase_13 RE -
testcase_14 RE -
testcase_15 RE -
testcase_16 RE -
testcase_17 RE -
testcase_18 RE -
testcase_19 RE -
testcase_20 RE -
testcase_21 RE -
testcase_22 RE -
testcase_23 RE -
testcase_24 RE -
testcase_25 RE -
testcase_26 RE -
testcase_27 RE -
testcase_28 RE -
testcase_29 RE -
testcase_30 AC 928 ms
63,544 KB
testcase_31 AC 1,253 ms
76,040 KB
testcase_32 AC 1,228 ms
76,156 KB
testcase_33 AC 1,203 ms
74,620 KB
testcase_34 AC 908 ms
63,572 KB
testcase_35 AC 901 ms
63,612 KB
testcase_36 AC 909 ms
63,584 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import scala.annotation.tailrec
import scala.io.StdIn.*
import scala.math.*

@main def main =
  val Array(n, x, y, z) = readLine().split(' ').map(_.toInt)
  val pay = readLine().split(' ').map(_.toInt)
  val bill = Array(1000 -> x, 5000 -> y, 10000 -> z)
  for (money, count) <- bill.reverseIterator do
    var rest = count
    for i <- 0 until n do
      if pay(i) >= money then
        val use = min(rest, pay(i) / money)
        pay(i) -= use * money
        rest -= use
    for i <- (0 until n).sortWith((i, j) => pay(i) % money >= pay(j) % money) do
      if rest > 0 && pay(i) >= 0 then
        rest -= 1
        pay(i) -= money
  println(if pay.forall(_ < 0) then "Yes" else "No")
0