結果

問題 No.36 素数が嫌い!
ユーザー purple_jwlpurple_jwl
提出日時 2016-10-27 12:26:03
言語 Scala(Beta)
(3.4.0)
結果
AC  
実行時間 1,015 ms / 5,000 ms
コード長 421 bytes
コンパイル時間 8,207 ms
コンパイル使用メモリ 258,992 KB
実行使用メモリ 64,624 KB
最終ジャッジ日時 2024-06-29 19:41:16
合計ジャッジ時間 38,054 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 947 ms
64,408 KB
testcase_01 AC 996 ms
64,404 KB
testcase_02 AC 866 ms
64,456 KB
testcase_03 AC 869 ms
64,276 KB
testcase_04 AC 851 ms
64,288 KB
testcase_05 AC 865 ms
64,372 KB
testcase_06 AC 870 ms
64,048 KB
testcase_07 AC 869 ms
64,164 KB
testcase_08 AC 867 ms
64,384 KB
testcase_09 AC 860 ms
64,380 KB
testcase_10 AC 863 ms
64,588 KB
testcase_11 AC 918 ms
64,220 KB
testcase_12 AC 1,003 ms
64,348 KB
testcase_13 AC 1,002 ms
64,432 KB
testcase_14 AC 982 ms
64,344 KB
testcase_15 AC 870 ms
64,604 KB
testcase_16 AC 880 ms
64,188 KB
testcase_17 AC 872 ms
64,468 KB
testcase_18 AC 856 ms
64,564 KB
testcase_19 AC 931 ms
64,624 KB
testcase_20 AC 1,012 ms
64,456 KB
testcase_21 AC 972 ms
64,532 KB
testcase_22 AC 984 ms
64,260 KB
testcase_23 AC 951 ms
64,340 KB
testcase_24 AC 961 ms
64,468 KB
testcase_25 AC 955 ms
64,428 KB
testcase_26 AC 964 ms
64,424 KB
testcase_27 AC 994 ms
64,532 KB
testcase_28 AC 953 ms
64,316 KB
testcase_29 AC 1,015 ms
64,412 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[Int]()

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

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

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