結果

問題 No.300 平方数
ユーザー koba-e964koba-e964
提出日時 2022-02-22 17:48:26
言語 Scala(Beta)
(3.6.2)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 669 bytes
コンパイル時間 10,453 ms
コンパイル使用メモリ 251,916 KB
実行使用メモリ 65,180 KB
最終ジャッジ日時 2024-11-20 09:08:00
合計ジャッジ時間 58,652 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 980 ms
65,112 KB
testcase_01 AC 974 ms
65,048 KB
testcase_02 AC 968 ms
65,080 KB
testcase_03 AC 999 ms
63,168 KB
testcase_04 AC 981 ms
63,144 KB
testcase_05 AC 978 ms
64,928 KB
testcase_06 AC 986 ms
64,992 KB
testcase_07 AC 972 ms
63,364 KB
testcase_08 AC 988 ms
65,156 KB
testcase_09 AC 971 ms
65,044 KB
testcase_10 AC 978 ms
64,920 KB
testcase_11 AC 995 ms
63,308 KB
testcase_12 AC 969 ms
65,088 KB
testcase_13 TLE -
testcase_14 AC 996 ms
64,988 KB
testcase_15 AC 994 ms
63,340 KB
testcase_16 AC 967 ms
63,496 KB
testcase_17 AC 981 ms
65,044 KB
testcase_18 TLE -
testcase_19 AC 990 ms
65,016 KB
testcase_20 AC 988 ms
65,144 KB
testcase_21 AC 992 ms
65,012 KB
testcase_22 AC 983 ms
64,900 KB
testcase_23 AC 991 ms
64,940 KB
testcase_24 AC 990 ms
65,092 KB
testcase_25 AC 996 ms
64,928 KB
testcase_26 AC 987 ms
65,084 KB
testcase_27 AC 974 ms
63,500 KB
testcase_28 TLE -
testcase_29 TLE -
testcase_30 AC 988 ms
65,052 KB
testcase_31 AC 989 ms
65,032 KB
testcase_32 AC 994 ms
65,108 KB
testcase_33 TLE -
testcase_34 TLE -
testcase_35 AC 999 ms
65,140 KB
testcase_36 AC 994 ms
65,180 KB
testcase_37 AC 978 ms
65,112 KB
testcase_38 AC 970 ms
65,044 KB
testcase_39 AC 982 ms
65,136 KB
testcase_40 AC 982 ms
65,084 KB
testcase_41 AC 999 ms
64,960 KB
testcase_42 AC 989 ms
65,000 KB
testcase_43 AC 996 ms
65,048 KB
testcase_44 AC 996 ms
64,952 KB
testcase_45 AC 976 ms
65,136 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

/*
 * Reference: http://lizan.asia/blog/2012/12/11/scala-competitive/
 */

object Main extends App {
  import java.{util => ju}
  import scala.annotation._
  import scala.collection._
  import scala.collection.{mutable => mu}
  import scala.collection.JavaConverters._
  import scala.math._

  val sc = new ju.Scanner(System.in)
  @tailrec
  private final def t(v : Long , p : Long, acc : Long) : Long = {
    if (v < p * p) {
      return acc * v
    }
    var cnt = 0
    var x = v
    while (x % p == 0) {
       cnt = 1 - cnt
        x /= p
    }
    var nacc = acc
    if (cnt == 1) nacc *= p
    t(x, p + 1, nacc)
  }
  val q = sc.nextLong
  println(t(q, 2, 1))
}
0