結果

問題 No.1015 おつりは要らないです
ユーザー yudedakoyudedako
提出日時 2022-01-26 18:29:13
言語 Scala(Beta)
(3.4.0)
結果
AC  
実行時間 1,881 ms / 2,000 ms
コード長 673 bytes
コンパイル時間 13,792 ms
コンパイル使用メモリ 262,348 KB
実行使用メモリ 81,444 KB
最終ジャッジ日時 2024-06-06 01:26:53
合計ジャッジ時間 63,899 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 871 ms
63,700 KB
testcase_01 AC 876 ms
63,712 KB
testcase_02 AC 884 ms
63,756 KB
testcase_03 AC 874 ms
63,444 KB
testcase_04 AC 870 ms
63,712 KB
testcase_05 AC 891 ms
63,572 KB
testcase_06 AC 874 ms
63,676 KB
testcase_07 AC 859 ms
63,736 KB
testcase_08 AC 881 ms
63,608 KB
testcase_09 AC 908 ms
63,676 KB
testcase_10 AC 1,747 ms
81,092 KB
testcase_11 AC 1,644 ms
81,396 KB
testcase_12 AC 1,727 ms
80,592 KB
testcase_13 AC 1,729 ms
81,148 KB
testcase_14 AC 1,736 ms
81,444 KB
testcase_15 AC 1,733 ms
80,564 KB
testcase_16 AC 1,704 ms
80,932 KB
testcase_17 AC 1,705 ms
81,352 KB
testcase_18 AC 1,681 ms
80,996 KB
testcase_19 AC 1,659 ms
80,812 KB
testcase_20 AC 1,758 ms
79,948 KB
testcase_21 AC 1,712 ms
79,960 KB
testcase_22 AC 1,722 ms
79,976 KB
testcase_23 AC 1,743 ms
79,308 KB
testcase_24 AC 1,756 ms
80,332 KB
testcase_25 AC 1,729 ms
80,004 KB
testcase_26 AC 1,724 ms
79,876 KB
testcase_27 AC 1,750 ms
80,184 KB
testcase_28 AC 1,753 ms
79,788 KB
testcase_29 AC 1,881 ms
80,088 KB
testcase_30 AC 897 ms
63,572 KB
testcase_31 AC 1,265 ms
74,208 KB
testcase_32 AC 1,250 ms
73,920 KB
testcase_33 AC 1,220 ms
74,740 KB
testcase_34 AC 885 ms
63,736 KB
testcase_35 AC 900 ms
63,604 KB
testcase_36 AC 882 ms
63,780 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) > 0 then
        val use = min(rest, pay(i) / money)
        pay(i) -= use * money
        rest -= use
    for i <- (0 until n).sortBy(i => pay(i) % money).reverseIterator do
      if rest > 0 && pay(i) >= 0 then
        rest -= 1
        pay(i) -= money
  println(if pay.forall(_ < 0) then "Yes" else "No")
0