結果

問題 No.1723 [Cherry 3rd Tune *] Dead on
ユーザー yudedakoyudedako
提出日時 2022-01-25 14:02:54
言語 Scala(Beta)
(3.4.0)
結果
WA  
実行時間 -
コード長 1,060 bytes
コンパイル時間 13,337 ms
コンパイル使用メモリ 269,652 KB
実行使用メモリ 63,572 KB
最終ジャッジ日時 2024-05-09 13:37:30
合計ジャッジ時間 61,708 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 924 ms
63,180 KB
testcase_01 AC 935 ms
63,456 KB
testcase_02 AC 907 ms
63,352 KB
testcase_03 AC 981 ms
63,412 KB
testcase_04 AC 930 ms
63,164 KB
testcase_05 AC 960 ms
63,208 KB
testcase_06 AC 921 ms
63,408 KB
testcase_07 AC 926 ms
63,216 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 AC 929 ms
63,464 KB
testcase_11 WA -
testcase_12 AC 954 ms
63,380 KB
testcase_13 WA -
testcase_14 AC 931 ms
63,344 KB
testcase_15 WA -
testcase_16 WA -
testcase_17 AC 965 ms
63,432 KB
testcase_18 WA -
testcase_19 AC 949 ms
63,484 KB
testcase_20 AC 959 ms
63,484 KB
testcase_21 WA -
testcase_22 AC 945 ms
63,212 KB
testcase_23 AC 929 ms
63,424 KB
testcase_24 WA -
testcase_25 WA -
testcase_26 AC 941 ms
63,488 KB
testcase_27 WA -
testcase_28 WA -
testcase_29 AC 919 ms
63,448 KB
testcase_30 AC 930 ms
63,540 KB
testcase_31 WA -
testcase_32 AC 914 ms
63,552 KB
testcase_33 AC 903 ms
63,132 KB
testcase_34 WA -
testcase_35 AC 907 ms
63,340 KB
testcase_36 AC 938 ms
63,248 KB
testcase_37 AC 905 ms
63,516 KB
testcase_38 AC 904 ms
63,296 KB
testcase_39 AC 881 ms
63,140 KB
testcase_40 AC 892 ms
63,328 KB
testcase_41 AC 898 ms
63,380 KB
testcase_42 WA -
testcase_43 AC 892 ms
63,376 KB
testcase_44 AC 878 ms
63,200 KB
testcase_45 AC 887 ms
63,424 KB
testcase_46 WA -
testcase_47 AC 878 ms
63,428 KB
testcase_48 AC 894 ms
63,272 KB
testcase_49 AC 949 ms
63,368 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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


def calcPrimeFactor(value: Long): List[(Long, Int)] =
  @tailrec def inner(v: Long, p: Long, e: Int, result: List[(Long, Int)]): List[(Long, Int)] =
    v match
      case 1 =>
        if e == 0 then result else (p, e)::result
      case _ if v % p == 0 => inner(v / p, p, e + 1, result)
      case _ if e != 0 => inner(v, p + 1, 0, (p, e)::result)
      case _ if v < p * p => (v, 1)::result
      case _ => inner(v, p + 1, 0, result)
  inner(value, 2, 0, Nil)


@main def main =
  val Array(x, a, y, b) = readLine().split(' ').map(_.toLong)
  @tailrec def isDividable(x: List[(Long, Int)], y: List[(Long, Int)]): Boolean =
    (x, y) match
      case (_, Nil) => true
      case (Nil, _) => false
      case ((px,ex)::xt, (py, ey)::yt) =>
        if px == py then
          (ex * a) % (ey * b) == 0 && isDividable(xt, yt)
        else
          isDividable(xt, y)
  val xp = calcPrimeFactor(x)
  val yp = calcPrimeFactor(y)
  val result = isDividable(xp, yp)
  println(if result then "Yes" else "No")
0