結果

問題 No.1015 おつりは要らないです
ユーザー yudedakoyudedako
提出日時 2022-01-26 18:26:36
言語 Scala(Beta)
(3.6.2)
結果
AC  
実行時間 1,695 ms / 2,000 ms
コード長 686 bytes
コンパイル時間 14,672 ms
コンパイル使用メモリ 265,204 KB
実行使用メモリ 75,884 KB
最終ジャッジ日時 2024-12-23 12:00:17
合計ジャッジ時間 64,561 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 926 ms
63,596 KB
testcase_01 AC 910 ms
63,584 KB
testcase_02 AC 958 ms
63,332 KB
testcase_03 AC 947 ms
63,624 KB
testcase_04 AC 923 ms
63,532 KB
testcase_05 AC 940 ms
63,672 KB
testcase_06 AC 939 ms
63,536 KB
testcase_07 AC 949 ms
63,508 KB
testcase_08 AC 904 ms
63,704 KB
testcase_09 AC 901 ms
63,776 KB
testcase_10 AC 1,695 ms
73,364 KB
testcase_11 AC 1,619 ms
73,508 KB
testcase_12 AC 1,641 ms
73,152 KB
testcase_13 AC 1,617 ms
73,164 KB
testcase_14 AC 1,555 ms
75,008 KB
testcase_15 AC 1,589 ms
73,052 KB
testcase_16 AC 1,568 ms
73,040 KB
testcase_17 AC 1,539 ms
73,588 KB
testcase_18 AC 1,575 ms
73,188 KB
testcase_19 AC 1,595 ms
73,152 KB
testcase_20 AC 1,587 ms
72,372 KB
testcase_21 AC 1,629 ms
72,240 KB
testcase_22 AC 1,581 ms
72,088 KB
testcase_23 AC 1,664 ms
72,676 KB
testcase_24 AC 1,553 ms
72,572 KB
testcase_25 AC 1,574 ms
72,248 KB
testcase_26 AC 1,595 ms
72,432 KB
testcase_27 AC 1,547 ms
72,276 KB
testcase_28 AC 1,629 ms
72,156 KB
testcase_29 AC 1,618 ms
71,908 KB
testcase_30 AC 920 ms
63,608 KB
testcase_31 AC 1,194 ms
75,844 KB
testcase_32 AC 1,179 ms
75,884 KB
testcase_33 AC 1,171 ms
74,552 KB
testcase_34 AC 881 ms
63,652 KB
testcase_35 AC 857 ms
63,544 KB
testcase_36 AC 889 ms
63,648 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