結果

問題 No.207 世界のなんとか
ユーザー i524i524
提出日時 2020-08-12 16:52:27
言語 Scala(Beta)
(3.4.0)
結果
AC  
実行時間 903 ms / 5,000 ms
コード長 448 bytes
コンパイル時間 9,349 ms
コンパイル使用メモリ 264,600 KB
実行使用メモリ 63,356 KB
最終ジャッジ日時 2024-10-09 18:29:57
合計ジャッジ時間 27,339 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 878 ms
63,184 KB
testcase_01 AC 880 ms
63,344 KB
testcase_02 AC 903 ms
63,276 KB
testcase_03 AC 899 ms
62,928 KB
testcase_04 AC 902 ms
63,100 KB
testcase_05 AC 902 ms
63,016 KB
testcase_06 AC 882 ms
63,084 KB
testcase_07 AC 882 ms
63,184 KB
testcase_08 AC 878 ms
62,952 KB
testcase_09 AC 891 ms
63,300 KB
testcase_10 AC 880 ms
63,356 KB
testcase_11 AC 888 ms
63,128 KB
testcase_12 AC 891 ms
63,264 KB
testcase_13 AC 890 ms
63,104 KB
testcase_14 AC 895 ms
63,316 KB
testcase_15 AC 900 ms
63,116 KB
testcase_16 AC 884 ms
63,100 KB
testcase_17 AC 885 ms
63,340 KB
testcase_18 AC 880 ms
63,312 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import scala.io.StdIn.readLine

object Nabeatsu {
  def divisibleByThree = (_: Int) % 3 == 0
  def containsThree(x: Int): Boolean = x match {
    case x if x > 10 => x % 10 == 3 || containsThree(x / 10)
    case 3 => true
    case _ => false
  }

  def main(args: Array[String]): Unit = {
    val arr = readLine().split(" ").map(_.toInt)
    (arr(0) to arr(1)).filter(v => divisibleByThree(v) || containsThree(v)).foreach(System.out.println)
  }
}
0