結果

問題 No.36 素数が嫌い!
ユーザー purple_jwlpurple_jwl
提出日時 2016-10-27 12:20:12
言語 Scala(Beta)
(3.4.0)
結果
WA  
実行時間 -
コード長 374 bytes
コンパイル時間 10,057 ms
コンパイル使用メモリ 270,884 KB
実行使用メモリ 65,528 KB
最終ジャッジ日時 2024-06-29 19:40:34
合計ジャッジ時間 40,615 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 1,025 ms
62,828 KB
testcase_02 AC 885 ms
62,640 KB
testcase_03 AC 880 ms
62,552 KB
testcase_04 AC 897 ms
62,616 KB
testcase_05 AC 892 ms
62,464 KB
testcase_06 AC 890 ms
62,752 KB
testcase_07 AC 887 ms
62,700 KB
testcase_08 AC 879 ms
62,592 KB
testcase_09 AC 890 ms
62,704 KB
testcase_10 WA -
testcase_11 AC 938 ms
62,724 KB
testcase_12 AC 1,025 ms
62,728 KB
testcase_13 AC 1,028 ms
62,692 KB
testcase_14 AC 991 ms
62,816 KB
testcase_15 AC 892 ms
62,636 KB
testcase_16 AC 900 ms
62,552 KB
testcase_17 AC 895 ms
62,608 KB
testcase_18 AC 871 ms
62,720 KB
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 AC 971 ms
62,904 KB
testcase_25 WA -
testcase_26 AC 992 ms
62,800 KB
testcase_27 AC 1,021 ms
62,804 KB
testcase_28 AC 976 ms
62,584 KB
testcase_29 AC 1,032 ms
62,840 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
      }
    }

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