結果

問題 No.312 置換処理
ユーザー koba-e964koba-e964
提出日時 2015-12-05 01:56:54
言語 Scala(Beta)
(3.4.0)
結果
WA  
実行時間 -
コード長 542 bytes
コンパイル時間 8,454 ms
コンパイル使用メモリ 249,000 KB
実行使用メモリ 63,572 KB
最終ジャッジ日時 2024-06-29 11:47:39
合計ジャッジ時間 46,689 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 829 ms
63,552 KB
testcase_01 WA -
testcase_02 AC 832 ms
63,280 KB
testcase_03 WA -
testcase_04 AC 791 ms
63,572 KB
testcase_05 AC 803 ms
63,280 KB
testcase_06 AC 820 ms
63,452 KB
testcase_07 AC 802 ms
63,420 KB
testcase_08 AC 806 ms
63,556 KB
testcase_09 AC 816 ms
63,232 KB
testcase_10 AC 820 ms
63,468 KB
testcase_11 AC 827 ms
63,488 KB
testcase_12 AC 816 ms
63,532 KB
testcase_13 AC 810 ms
63,424 KB
testcase_14 AC 835 ms
63,308 KB
testcase_15 AC 839 ms
63,296 KB
testcase_16 AC 902 ms
63,388 KB
testcase_17 AC 811 ms
63,368 KB
testcase_18 AC 817 ms
63,280 KB
testcase_19 AC 809 ms
63,436 KB
testcase_20 AC 814 ms
63,392 KB
testcase_21 AC 828 ms
63,412 KB
testcase_22 AC 805 ms
63,428 KB
testcase_23 AC 825 ms
63,236 KB
testcase_24 AC 811 ms
63,196 KB
testcase_25 AC 799 ms
63,276 KB
testcase_26 AC 833 ms
63,464 KB
testcase_27 WA -
testcase_28 AC 810 ms
63,364 KB
testcase_29 WA -
testcase_30 WA -
testcase_31 AC 820 ms
63,244 KB
testcase_32 AC 817 ms
63,280 KB
testcase_33 AC 796 ms
63,532 KB
testcase_34 AC 809 ms
63,344 KB
testcase_35 AC 822 ms
63,300 KB
testcase_36 AC 802 ms
63,456 KB
testcase_37 AC 814 ms
63,316 KB
testcase_38 AC 788 ms
63,380 KB
testcase_39 AC 802 ms
63,528 KB
testcase_40 AC 819 ms
63,452 KB
testcase_41 AC 831 ms
63,336 KB
testcase_42 AC 830 ms
63,232 KB
testcase_43 AC 800 ms
63,488 KB
testcase_44 AC 789 ms
63,308 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 n < t * t => n
      case _ => calc(t + 1, n)
    }
  }
  val n = sc.nextLong
  println(calc(3, n))
}
0