結果

問題 No.312 置換処理
ユーザー koba-e964koba-e964
提出日時 2015-12-05 02:26:09
言語 Scala(Beta)
(3.4.0)
結果
AC  
実行時間 1,020 ms / 2,000 ms
コード長 583 bytes
コンパイル時間 13,360 ms
コンパイル使用メモリ 249,820 KB
実行使用メモリ 63,528 KB
最終ジャッジ日時 2024-11-15 11:50:37
合計ジャッジ時間 56,256 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 926 ms
63,248 KB
testcase_01 AC 952 ms
63,356 KB
testcase_02 AC 948 ms
63,416 KB
testcase_03 AC 966 ms
63,352 KB
testcase_04 AC 947 ms
63,092 KB
testcase_05 AC 919 ms
63,472 KB
testcase_06 AC 929 ms
63,472 KB
testcase_07 AC 929 ms
63,432 KB
testcase_08 AC 937 ms
63,268 KB
testcase_09 AC 926 ms
63,252 KB
testcase_10 AC 928 ms
63,048 KB
testcase_11 AC 936 ms
63,228 KB
testcase_12 AC 932 ms
63,096 KB
testcase_13 AC 933 ms
63,172 KB
testcase_14 AC 931 ms
63,400 KB
testcase_15 AC 942 ms
63,440 KB
testcase_16 AC 934 ms
63,308 KB
testcase_17 AC 935 ms
63,432 KB
testcase_18 AC 945 ms
63,356 KB
testcase_19 AC 933 ms
63,504 KB
testcase_20 AC 940 ms
63,240 KB
testcase_21 AC 932 ms
63,260 KB
testcase_22 AC 937 ms
63,452 KB
testcase_23 AC 946 ms
63,280 KB
testcase_24 AC 949 ms
63,460 KB
testcase_25 AC 933 ms
63,108 KB
testcase_26 AC 931 ms
63,472 KB
testcase_27 AC 935 ms
63,352 KB
testcase_28 AC 935 ms
63,172 KB
testcase_29 AC 935 ms
63,316 KB
testcase_30 AC 947 ms
63,352 KB
testcase_31 AC 942 ms
63,528 KB
testcase_32 AC 948 ms
63,384 KB
testcase_33 AC 1,020 ms
63,020 KB
testcase_34 AC 953 ms
63,416 KB
testcase_35 AC 946 ms
63,456 KB
testcase_36 AC 942 ms
63,060 KB
testcase_37 AC 935 ms
63,460 KB
testcase_38 AC 938 ms
63,296 KB
testcase_39 AC 932 ms
63,444 KB
testcase_40 AC 942 ms
63,320 KB
testcase_41 AC 936 ms
63,320 KB
testcase_42 AC 938 ms
63,444 KB
testcase_43 AC 939 ms
63,220 KB
testcase_44 AC 949 ms
63,372 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