結果

問題 No.1015 おつりは要らないです
ユーザー yudedakoyudedako
提出日時 2022-01-26 18:25:45
言語 Scala(Beta)
(3.4.0)
結果
WA  
実行時間 -
コード長 642 bytes
コンパイル時間 11,031 ms
コンパイル使用メモリ 267,424 KB
実行使用メモリ 81,748 KB
最終ジャッジ日時 2024-06-06 01:15:34
合計ジャッジ時間 60,908 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 816 ms
65,352 KB
testcase_01 WA -
testcase_02 WA -
testcase_03 AC 820 ms
65,260 KB
testcase_04 AC 834 ms
65,316 KB
testcase_05 AC 830 ms
65,232 KB
testcase_06 AC 831 ms
65,308 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 841 ms
65,436 KB
testcase_10 AC 1,722 ms
80,984 KB
testcase_11 AC 1,650 ms
81,296 KB
testcase_12 AC 1,619 ms
80,432 KB
testcase_13 AC 1,658 ms
81,040 KB
testcase_14 AC 1,657 ms
81,748 KB
testcase_15 AC 1,611 ms
80,568 KB
testcase_16 AC 1,617 ms
81,148 KB
testcase_17 AC 1,667 ms
81,540 KB
testcase_18 AC 1,601 ms
80,924 KB
testcase_19 AC 1,571 ms
80,604 KB
testcase_20 AC 1,810 ms
79,496 KB
testcase_21 AC 1,613 ms
79,492 KB
testcase_22 AC 1,609 ms
79,472 KB
testcase_23 AC 1,613 ms
79,280 KB
testcase_24 AC 1,671 ms
80,296 KB
testcase_25 AC 1,716 ms
79,628 KB
testcase_26 AC 1,616 ms
79,968 KB
testcase_27 AC 1,597 ms
79,680 KB
testcase_28 AC 1,590 ms
79,768 KB
testcase_29 AC 1,664 ms
80,032 KB
testcase_30 AC 817 ms
65,456 KB
testcase_31 AC 1,152 ms
78,516 KB
testcase_32 WA -
testcase_33 AC 1,128 ms
77,524 KB
testcase_34 AC 833 ms
65,264 KB
testcase_35 AC 825 ms
65,236 KB
testcase_36 AC 821 ms
65,324 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
      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