結果

問題 No.1738 What's in the box?
ユーザー yudedakoyudedako
提出日時 2022-01-25 13:22:09
言語 Scala(Beta)
(3.4.0)
結果
RE  
実行時間 -
コード長 410 bytes
コンパイル時間 13,229 ms
コンパイル使用メモリ 253,648 KB
実行使用メモリ 63,796 KB
最終ジャッジ日時 2024-05-09 12:50:33
合計ジャッジ時間 84,768 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 915 ms
63,440 KB
testcase_01 AC 919 ms
63,272 KB
testcase_02 AC 922 ms
63,496 KB
testcase_03 AC 940 ms
63,664 KB
testcase_04 AC 934 ms
63,492 KB
testcase_05 AC 930 ms
63,388 KB
testcase_06 AC 947 ms
63,412 KB
testcase_07 AC 951 ms
63,516 KB
testcase_08 AC 953 ms
63,480 KB
testcase_09 AC 941 ms
63,620 KB
testcase_10 AC 950 ms
63,500 KB
testcase_11 AC 950 ms
63,632 KB
testcase_12 AC 958 ms
63,416 KB
testcase_13 AC 931 ms
63,268 KB
testcase_14 AC 921 ms
63,208 KB
testcase_15 AC 910 ms
63,356 KB
testcase_16 AC 924 ms
63,484 KB
testcase_17 AC 905 ms
63,320 KB
testcase_18 AC 911 ms
63,576 KB
testcase_19 AC 911 ms
63,316 KB
testcase_20 AC 914 ms
63,548 KB
testcase_21 AC 929 ms
63,648 KB
testcase_22 AC 931 ms
63,500 KB
testcase_23 AC 937 ms
63,556 KB
testcase_24 AC 935 ms
63,644 KB
testcase_25 AC 944 ms
63,620 KB
testcase_26 AC 919 ms
63,268 KB
testcase_27 AC 925 ms
63,464 KB
testcase_28 AC 930 ms
63,452 KB
testcase_29 AC 925 ms
63,588 KB
testcase_30 AC 930 ms
63,640 KB
testcase_31 RE -
testcase_32 RE -
testcase_33 AC 941 ms
63,544 KB
testcase_34 AC 950 ms
63,628 KB
testcase_35 AC 946 ms
63,556 KB
testcase_36 AC 943 ms
63,636 KB
testcase_37 AC 947 ms
63,648 KB
testcase_38 AC 959 ms
63,296 KB
testcase_39 AC 949 ms
63,440 KB
testcase_40 AC 953 ms
63,352 KB
testcase_41 AC 959 ms
63,524 KB
testcase_42 AC 954 ms
63,708 KB
testcase_43 AC 961 ms
63,464 KB
testcase_44 AC 945 ms
63,732 KB
testcase_45 AC 943 ms
63,460 KB
testcase_46 AC 946 ms
63,548 KB
testcase_47 AC 952 ms
63,596 KB
testcase_48 AC 982 ms
63,344 KB
testcase_49 AC 956 ms
63,516 KB
testcase_50 AC 959 ms
63,536 KB
testcase_51 AC 944 ms
63,648 KB
testcase_52 AC 931 ms
63,636 KB
testcase_53 AC 920 ms
63,416 KB
testcase_54 AC 911 ms
63,484 KB
testcase_55 AC 918 ms
63,556 KB
testcase_56 AC 918 ms
63,472 KB
testcase_57 AC 915 ms
63,252 KB
testcase_58 AC 918 ms
63,592 KB
testcase_59 AC 923 ms
63,200 KB
testcase_60 AC 922 ms
63,484 KB
testcase_61 AC 921 ms
63,380 KB
testcase_62 AC 929 ms
63,472 KB
testcase_63 AC 922 ms
63,516 KB
testcase_64 AC 954 ms
63,472 KB
testcase_65 AC 932 ms
63,404 KB
testcase_66 AC 931 ms
63,468 KB
testcase_67 AC 935 ms
63,140 KB
testcase_68 AC 924 ms
63,504 KB
testcase_69 AC 933 ms
63,620 KB
testcase_70 AC 928 ms
63,568 KB
testcase_71 AC 930 ms
63,364 KB
testcase_72 AC 934 ms
63,224 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

@tailrec def gcd(a: Int, b: Int): Int =
  b match
    case 0 => a
    case _ => gcd(b, a % b)

@main def main =
  val Array(n, m) = readLine().split(' ').map(_.toInt)
  val box = readLine().split(' ').map(_.toInt)
  val unit = box.reduce(gcd)
  val count = box.map(_ / unit).sum
  val ratio = m / count
  println(box.map(_ / unit * ratio).mkString(" "))
0