結果

問題 No.36 素数が嫌い!
ユーザー lrf141lrf141
提出日時 2017-03-28 22:01:25
言語 Scala(Beta)
(3.4.0)
結果
AC  
実行時間 1,030 ms / 5,000 ms
コード長 484 bytes
コンパイル時間 10,413 ms
コンパイル使用メモリ 263,380 KB
実行使用メモリ 63,028 KB
最終ジャッジ日時 2024-06-30 01:03:56
合計ジャッジ時間 38,641 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 950 ms
62,976 KB
testcase_01 AC 988 ms
62,892 KB
testcase_02 AC 862 ms
62,732 KB
testcase_03 AC 868 ms
62,724 KB
testcase_04 AC 869 ms
62,744 KB
testcase_05 AC 862 ms
62,900 KB
testcase_06 AC 869 ms
62,608 KB
testcase_07 AC 853 ms
62,812 KB
testcase_08 AC 861 ms
62,896 KB
testcase_09 AC 883 ms
62,840 KB
testcase_10 AC 881 ms
62,800 KB
testcase_11 AC 932 ms
62,792 KB
testcase_12 AC 1,019 ms
62,992 KB
testcase_13 AC 1,014 ms
63,020 KB
testcase_14 AC 980 ms
62,888 KB
testcase_15 AC 872 ms
62,848 KB
testcase_16 AC 862 ms
62,828 KB
testcase_17 AC 859 ms
62,704 KB
testcase_18 AC 862 ms
62,700 KB
testcase_19 AC 905 ms
62,852 KB
testcase_20 AC 1,016 ms
62,780 KB
testcase_21 AC 980 ms
62,940 KB
testcase_22 AC 978 ms
62,720 KB
testcase_23 AC 927 ms
63,028 KB
testcase_24 AC 947 ms
63,008 KB
testcase_25 AC 966 ms
62,936 KB
testcase_26 AC 968 ms
62,816 KB
testcase_27 AC 998 ms
62,592 KB
testcase_28 AC 969 ms
62,824 KB
testcase_29 AC 1,030 ms
63,012 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner
import scala.collection.mutable._

object no36{
    def main(args:Array[String]):Unit = {
        var n = scala.io.StdIn.readLong
        val res = ListBuffer[Int]()
        for(i <- 2 to (Math.sqrt(n).toInt+1)){
            while(n%i == 0){
                res += i
                n /= i
            }
        }
        if(n != 1) res += n.toInt
        if(2 < res.size){
            println("YES")
        }else{
            println("NO")
        }
    }
}
0