結果

問題 No.312 置換処理
ユーザー koba-e964koba-e964
提出日時 2022-01-15 19:30:10
言語 Scala(Beta)
(3.4.0)
結果
AC  
実行時間 996 ms / 2,000 ms
コード長 583 bytes
コンパイル時間 10,730 ms
コンパイル使用メモリ 248,536 KB
実行使用メモリ 63,268 KB
最終ジャッジ日時 2023-08-14 04:40:33
合計ジャッジ時間 57,622 ms
ジャッジサーバーID
(参考情報)
judge14 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 973 ms
62,788 KB
testcase_01 AC 984 ms
63,024 KB
testcase_02 AC 996 ms
62,812 KB
testcase_03 AC 989 ms
62,772 KB
testcase_04 AC 979 ms
62,900 KB
testcase_05 AC 969 ms
62,888 KB
testcase_06 AC 975 ms
62,780 KB
testcase_07 AC 982 ms
62,660 KB
testcase_08 AC 975 ms
62,880 KB
testcase_09 AC 977 ms
62,928 KB
testcase_10 AC 978 ms
62,708 KB
testcase_11 AC 984 ms
62,856 KB
testcase_12 AC 979 ms
62,876 KB
testcase_13 AC 973 ms
62,788 KB
testcase_14 AC 968 ms
62,880 KB
testcase_15 AC 969 ms
62,848 KB
testcase_16 AC 970 ms
62,768 KB
testcase_17 AC 969 ms
62,688 KB
testcase_18 AC 974 ms
63,040 KB
testcase_19 AC 981 ms
62,944 KB
testcase_20 AC 973 ms
62,916 KB
testcase_21 AC 979 ms
62,996 KB
testcase_22 AC 972 ms
62,836 KB
testcase_23 AC 970 ms
62,688 KB
testcase_24 AC 970 ms
62,744 KB
testcase_25 AC 968 ms
62,924 KB
testcase_26 AC 980 ms
63,092 KB
testcase_27 AC 974 ms
62,924 KB
testcase_28 AC 976 ms
62,828 KB
testcase_29 AC 969 ms
62,796 KB
testcase_30 AC 985 ms
63,052 KB
testcase_31 AC 970 ms
63,240 KB
testcase_32 AC 982 ms
62,844 KB
testcase_33 AC 981 ms
62,772 KB
testcase_34 AC 982 ms
62,836 KB
testcase_35 AC 974 ms
62,724 KB
testcase_36 AC 976 ms
62,788 KB
testcase_37 AC 974 ms
63,268 KB
testcase_38 AC 983 ms
63,060 KB
testcase_39 AC 980 ms
62,716 KB
testcase_40 AC 984 ms
63,032 KB
testcase_41 AC 973 ms
62,848 KB
testcase_42 AC 971 ms
63,116 KB
testcase_43 AC 969 ms
62,864 KB
testcase_44 AC 976 ms
62,776 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
  def  calc(t:Long, n : Long) : Long={
    () match {
     case  _ if n % t == 0 => t
      case _ if 2 * n < t * t => if (n >= 6 && n % 2 == 0) n / 2 else n
      case _ => calc(t + 1, n)
    }
  }
  val n = sc.nextLong
  println(calc(3, n))
}
0