結果

問題 No.1723 [Cherry 3rd Tune *] Dead on
ユーザー yudedakoyudedako
提出日時 2022-01-25 14:02:54
言語 Scala(Beta)
(3.6.2)
結果
WA  
実行時間 -
コード長 1,060 bytes
コンパイル時間 14,937 ms
コンパイル使用メモリ 262,700 KB
実行使用メモリ 63,432 KB
最終ジャッジ日時 2024-12-16 03:24:17
合計ジャッジ時間 57,268 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 834 ms
63,164 KB
testcase_01 AC 827 ms
62,808 KB
testcase_02 AC 821 ms
62,928 KB
testcase_03 AC 837 ms
63,080 KB
testcase_04 AC 847 ms
62,916 KB
testcase_05 AC 875 ms
62,960 KB
testcase_06 AC 827 ms
63,048 KB
testcase_07 AC 837 ms
63,088 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 AC 860 ms
62,972 KB
testcase_11 WA -
testcase_12 AC 940 ms
63,032 KB
testcase_13 WA -
testcase_14 AC 834 ms
62,952 KB
testcase_15 WA -
testcase_16 WA -
testcase_17 AC 872 ms
62,948 KB
testcase_18 WA -
testcase_19 AC 868 ms
63,072 KB
testcase_20 AC 852 ms
62,952 KB
testcase_21 WA -
testcase_22 AC 864 ms
62,988 KB
testcase_23 AC 850 ms
62,880 KB
testcase_24 WA -
testcase_25 WA -
testcase_26 AC 843 ms
62,952 KB
testcase_27 WA -
testcase_28 WA -
testcase_29 AC 856 ms
63,120 KB
testcase_30 AC 870 ms
63,104 KB
testcase_31 WA -
testcase_32 AC 883 ms
63,108 KB
testcase_33 AC 849 ms
63,044 KB
testcase_34 WA -
testcase_35 AC 855 ms
63,064 KB
testcase_36 AC 881 ms
63,088 KB
testcase_37 AC 841 ms
62,936 KB
testcase_38 AC 824 ms
62,808 KB
testcase_39 AC 844 ms
63,036 KB
testcase_40 AC 853 ms
63,188 KB
testcase_41 AC 842 ms
63,096 KB
testcase_42 WA -
testcase_43 AC 827 ms
62,924 KB
testcase_44 AC 845 ms
62,952 KB
testcase_45 AC 845 ms
62,964 KB
testcase_46 WA -
testcase_47 AC 847 ms
63,012 KB
testcase_48 AC 821 ms
62,980 KB
testcase_49 AC 830 ms
62,948 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