結果

問題 No.207 世界のなんとか
ユーザー i524i524
提出日時 2020-08-12 16:50:01
言語 Scala(Beta)
(3.4.0)
結果
WA  
実行時間 -
コード長 429 bytes
コンパイル時間 13,220 ms
コンパイル使用メモリ 260,992 KB
実行使用メモリ 65,232 KB
最終ジャッジ日時 2024-10-09 18:29:12
合計ジャッジ時間 31,512 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 882 ms
65,168 KB
testcase_01 AC 887 ms
64,712 KB
testcase_02 AC 881 ms
64,884 KB
testcase_03 AC 887 ms
65,104 KB
testcase_04 AC 880 ms
64,756 KB
testcase_05 AC 879 ms
64,984 KB
testcase_06 AC 883 ms
64,920 KB
testcase_07 AC 886 ms
64,656 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 AC 885 ms
64,840 KB
testcase_12 AC 919 ms
64,892 KB
testcase_13 WA -
testcase_14 AC 903 ms
64,812 KB
testcase_15 AC 879 ms
64,988 KB
testcase_16 AC 882 ms
64,776 KB
testcase_17 AC 889 ms
64,908 KB
testcase_18 AC 888 ms
64,964 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 _ => 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