結果

問題 No.300 平方数
ユーザー kzyKTkzyKT
提出日時 2015-11-04 01:12:27
言語 Scala(Beta)
(3.4.0)
結果
AC  
実行時間 948 ms / 1,000 ms
コード長 306 bytes
コンパイル時間 11,033 ms
コンパイル使用メモリ 244,484 KB
実行使用メモリ 64,788 KB
最終ジャッジ日時 2024-06-11 09:35:03
合計ジャッジ時間 48,841 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 787 ms
63,408 KB
testcase_01 AC 787 ms
63,512 KB
testcase_02 AC 785 ms
63,396 KB
testcase_03 AC 783 ms
63,492 KB
testcase_04 AC 776 ms
63,492 KB
testcase_05 AC 948 ms
64,788 KB
testcase_06 AC 803 ms
63,336 KB
testcase_07 AC 808 ms
63,532 KB
testcase_08 AC 798 ms
63,636 KB
testcase_09 AC 833 ms
63,596 KB
testcase_10 AC 797 ms
63,620 KB
testcase_11 AC 794 ms
63,592 KB
testcase_12 AC 802 ms
63,352 KB
testcase_13 AC 810 ms
63,300 KB
testcase_14 AC 803 ms
63,444 KB
testcase_15 AC 803 ms
63,228 KB
testcase_16 AC 798 ms
63,468 KB
testcase_17 AC 787 ms
63,412 KB
testcase_18 AC 802 ms
63,536 KB
testcase_19 AC 785 ms
63,340 KB
testcase_20 AC 793 ms
63,448 KB
testcase_21 AC 786 ms
63,632 KB
testcase_22 AC 789 ms
63,680 KB
testcase_23 AC 799 ms
63,536 KB
testcase_24 AC 803 ms
63,620 KB
testcase_25 AC 812 ms
63,548 KB
testcase_26 AC 799 ms
63,564 KB
testcase_27 AC 798 ms
63,388 KB
testcase_28 AC 799 ms
63,300 KB
testcase_29 AC 802 ms
63,624 KB
testcase_30 AC 801 ms
63,336 KB
testcase_31 AC 807 ms
63,696 KB
testcase_32 AC 806 ms
63,500 KB
testcase_33 AC 807 ms
63,440 KB
testcase_34 AC 807 ms
63,428 KB
testcase_35 AC 798 ms
63,548 KB
testcase_36 AC 801 ms
63,488 KB
testcase_37 AC 799 ms
63,556 KB
testcase_38 AC 803 ms
63,636 KB
testcase_39 AC 788 ms
63,592 KB
testcase_40 AC 794 ms
63,548 KB
testcase_41 AC 797 ms
63,420 KB
testcase_42 AC 797 ms
63,484 KB
testcase_43 AC 817 ms
63,584 KB
testcase_44 AC 825 ms
63,532 KB
testcase_45 AC 801 ms
63,620 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner

object Main {
  def main(args: Array[String]) = {
    val sc=new Scanner(System.in)
    var x=sc.nextLong
    var y:Long=1
    var i:Long=2
    while(i*i<=x) {
      while(x%i==0) {
        x=x/i
        if(y%i!=0) y=y*i else y=y/i
      }
      i=i+1
    }
    println(x*y)
  }
}
0