結果

問題 No.312 置換処理
ユーザー koba-e964koba-e964
提出日時 2015-12-05 02:00:09
言語 Scala(Beta)
(3.4.0)
結果
WA  
実行時間 -
コード長 546 bytes
コンパイル時間 7,902 ms
コンパイル使用メモリ 253,712 KB
実行使用メモリ 65,032 KB
最終ジャッジ日時 2024-06-29 11:49:54
合計ジャッジ時間 47,279 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 829 ms
63,396 KB
testcase_01 WA -
testcase_02 AC 815 ms
63,060 KB
testcase_03 WA -
testcase_04 AC 830 ms
63,420 KB
testcase_05 AC 805 ms
63,452 KB
testcase_06 AC 826 ms
63,168 KB
testcase_07 AC 813 ms
63,180 KB
testcase_08 AC 839 ms
63,324 KB
testcase_09 AC 826 ms
63,420 KB
testcase_10 AC 802 ms
63,380 KB
testcase_11 AC 825 ms
63,372 KB
testcase_12 AC 807 ms
63,340 KB
testcase_13 AC 811 ms
63,224 KB
testcase_14 AC 828 ms
63,364 KB
testcase_15 AC 820 ms
63,284 KB
testcase_16 AC 815 ms
63,180 KB
testcase_17 AC 818 ms
63,228 KB
testcase_18 AC 818 ms
63,264 KB
testcase_19 AC 803 ms
63,420 KB
testcase_20 AC 831 ms
63,196 KB
testcase_21 AC 812 ms
63,484 KB
testcase_22 AC 813 ms
63,304 KB
testcase_23 AC 805 ms
63,444 KB
testcase_24 AC 819 ms
63,388 KB
testcase_25 AC 805 ms
63,192 KB
testcase_26 AC 817 ms
63,444 KB
testcase_27 AC 833 ms
63,396 KB
testcase_28 AC 815 ms
63,472 KB
testcase_29 AC 827 ms
63,488 KB
testcase_30 WA -
testcase_31 AC 798 ms
63,352 KB
testcase_32 AC 947 ms
63,504 KB
testcase_33 AC 823 ms
63,392 KB
testcase_34 AC 801 ms
63,520 KB
testcase_35 AC 907 ms
63,488 KB
testcase_36 AC 830 ms
63,372 KB
testcase_37 AC 813 ms
63,248 KB
testcase_38 AC 807 ms
63,276 KB
testcase_39 AC 810 ms
63,212 KB
testcase_40 AC 835 ms
63,488 KB
testcase_41 AC 816 ms
63,248 KB
testcase_42 AC 823 ms
63,320 KB
testcase_43 AC 820 ms
63,360 KB
testcase_44 AC 818 ms
63,384 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 => n
      case _ => calc(t + 1, n)
    }
  }
  val n = sc.nextLong
  println(calc(3, n))
}
0