結果

問題 No.36 素数が嫌い!
ユーザー purple_jwlpurple_jwl
提出日時 2016-10-27 12:27:45
言語 Scala(Beta)
(3.4.0)
結果
AC  
実行時間 1,046 ms / 5,000 ms
コード長 423 bytes
コンパイル時間 9,679 ms
コンパイル使用メモリ 270,016 KB
実行使用メモリ 62,924 KB
最終ジャッジ日時 2024-06-29 19:42:47
合計ジャッジ時間 38,321 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 944 ms
62,908 KB
testcase_01 AC 1,001 ms
62,732 KB
testcase_02 AC 889 ms
62,908 KB
testcase_03 AC 878 ms
62,572 KB
testcase_04 AC 880 ms
62,768 KB
testcase_05 AC 880 ms
62,768 KB
testcase_06 AC 887 ms
62,532 KB
testcase_07 AC 882 ms
62,612 KB
testcase_08 AC 877 ms
62,768 KB
testcase_09 AC 874 ms
62,916 KB
testcase_10 AC 886 ms
62,744 KB
testcase_11 AC 925 ms
62,676 KB
testcase_12 AC 1,016 ms
62,908 KB
testcase_13 AC 1,020 ms
62,672 KB
testcase_14 AC 980 ms
62,768 KB
testcase_15 AC 880 ms
62,624 KB
testcase_16 AC 871 ms
62,900 KB
testcase_17 AC 883 ms
62,908 KB
testcase_18 AC 887 ms
62,772 KB
testcase_19 AC 947 ms
62,912 KB
testcase_20 AC 1,046 ms
62,924 KB
testcase_21 AC 997 ms
62,916 KB
testcase_22 AC 1,003 ms
62,880 KB
testcase_23 AC 965 ms
62,804 KB
testcase_24 AC 977 ms
62,780 KB
testcase_25 AC 953 ms
62,768 KB
testcase_26 AC 965 ms
62,684 KB
testcase_27 AC 1,000 ms
62,880 KB
testcase_28 AC 967 ms
62,912 KB
testcase_29 AC 1,024 ms
62,796 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import scala.io.StdIn
import scala.collection.mutable.ArrayBuffer

object Main {
  def main(args: Array[String]): Unit = {
    var n = StdIn.readLong

    val memo = ArrayBuffer[Long]()

    for (i <- (2 to Math.sqrt(n).toInt + 1)) {
      while (n % i == 0) {
        memo += i.toLong
        n /= i
      }
    }

    if (n != 1) {
      memo += n
    }

    println(
      if (memo.size > 2) "YES" else "NO"
    )
  }
}
0