結果

問題 No.537 ユーザーID
ユーザー neko_the_shadowneko_the_shadow
提出日時 2018-12-05 23:54:24
言語 Scala(Beta)
(3.4.0)
結果
RE  
実行時間 -
コード長 271 bytes
コンパイル時間 9,219 ms
コンパイル使用メモリ 269,536 KB
実行使用メモリ 65,304 KB
最終ジャッジ日時 2024-07-01 05:44:01
合計ジャッジ時間 42,917 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 895 ms
64,800 KB
testcase_01 AC 910 ms
65,212 KB
testcase_02 AC 890 ms
64,864 KB
testcase_03 AC 888 ms
65,256 KB
testcase_04 AC 877 ms
65,024 KB
testcase_05 AC 890 ms
64,984 KB
testcase_06 AC 904 ms
65,192 KB
testcase_07 AC 893 ms
65,304 KB
testcase_08 AC 890 ms
65,284 KB
testcase_09 AC 882 ms
65,060 KB
testcase_10 AC 882 ms
64,828 KB
testcase_11 AC 878 ms
64,764 KB
testcase_12 AC 872 ms
64,820 KB
testcase_13 AC 886 ms
65,124 KB
testcase_14 AC 881 ms
65,124 KB
testcase_15 AC 925 ms
65,000 KB
testcase_16 AC 904 ms
65,184 KB
testcase_17 AC 899 ms
65,024 KB
testcase_18 RE -
testcase_19 RE -
testcase_20 RE -
testcase_21 RE -
testcase_22 RE -
testcase_23 RE -
testcase_24 RE -
testcase_25 RE -
testcase_26 RE -
testcase_27 RE -
testcase_28 RE -
testcase_29 RE -
testcase_30 RE -
testcase_31 RE -
testcase_32 RE -
testcase_33 RE -
testcase_34 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

object Q537 {
  def main(args: Array[String]): Unit = {
    val n = io.StdIn.readLine().toInt
    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