結果

問題 No.537 ユーザーID
ユーザー neko_the_shadowneko_the_shadow
提出日時 2018-12-05 23:56:21
言語 Scala(Beta)
(3.4.0)
結果
AC  
実行時間 1,058 ms / 2,000 ms
コード長 272 bytes
コンパイル時間 8,812 ms
コンパイル使用メモリ 270,208 KB
実行使用メモリ 65,348 KB
最終ジャッジ日時 2024-07-01 05:45:06
合計ジャッジ時間 44,122 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 908 ms
64,472 KB
testcase_01 AC 910 ms
64,960 KB
testcase_02 AC 911 ms
64,412 KB
testcase_03 AC 916 ms
64,692 KB
testcase_04 AC 913 ms
64,824 KB
testcase_05 AC 914 ms
64,944 KB
testcase_06 AC 915 ms
64,708 KB
testcase_07 AC 913 ms
64,624 KB
testcase_08 AC 915 ms
64,800 KB
testcase_09 AC 907 ms
64,760 KB
testcase_10 AC 904 ms
64,456 KB
testcase_11 AC 907 ms
64,212 KB
testcase_12 AC 918 ms
64,572 KB
testcase_13 AC 928 ms
64,860 KB
testcase_14 AC 932 ms
64,456 KB
testcase_15 AC 931 ms
64,916 KB
testcase_16 AC 915 ms
64,548 KB
testcase_17 AC 913 ms
64,828 KB
testcase_18 AC 957 ms
64,952 KB
testcase_19 AC 951 ms
64,772 KB
testcase_20 AC 941 ms
64,560 KB
testcase_21 AC 953 ms
65,072 KB
testcase_22 AC 971 ms
64,808 KB
testcase_23 AC 970 ms
65,032 KB
testcase_24 AC 934 ms
64,656 KB
testcase_25 AC 961 ms
65,196 KB
testcase_26 AC 959 ms
65,008 KB
testcase_27 AC 949 ms
64,888 KB
testcase_28 AC 997 ms
65,048 KB
testcase_29 AC 1,058 ms
65,348 KB
testcase_30 AC 1,052 ms
65,104 KB
testcase_31 AC 970 ms
65,280 KB
testcase_32 AC 964 ms
64,804 KB
testcase_33 AC 1,026 ms
65,264 KB
testcase_34 AC 1,005 ms
65,316 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

object Q537 {
  def main(args: Array[String]): Unit = {
    val n = io.StdIn.readLine().toLong
    val answer = (1 to math.sqrt(n).toInt).filter(n % _ == 0).flatMap(x => {
      val y = n / x
      Seq(s"${x}${y}", s"${y}${x}")
    }).toSet.size
    println(answer)
  }
}
0