結果

問題 No.446 ゆきこーだーの雨と雪 (1)
ユーザー BurdenBurden
提出日時 2016-12-30 15:32:37
言語 Scala(Beta)
(3.4.0)
結果
WA  
実行時間 -
コード長 387 bytes
コンパイル時間 6,453 ms
コンパイル使用メモリ 243,152 KB
実行使用メモリ 64,196 KB
最終ジャッジ日時 2024-06-29 22:08:29
合計ジャッジ時間 20,760 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 779 ms
62,664 KB
testcase_01 AC 765 ms
62,280 KB
testcase_02 AC 780 ms
62,552 KB
testcase_03 WA -
testcase_04 AC 760 ms
62,468 KB
testcase_05 AC 780 ms
62,412 KB
testcase_06 AC 762 ms
62,296 KB
testcase_07 AC 759 ms
62,336 KB
testcase_08 AC 766 ms
62,600 KB
testcase_09 AC 758 ms
62,332 KB
testcase_10 AC 776 ms
62,492 KB
testcase_11 AC 760 ms
62,408 KB
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import scala.io.StdIn.readLine
import scala.util.matching.Regex

object RainSnow446 {
  def main(args:Array[String]): Unit ={
    def isNumContain(str:String) = str.matches("""[0-9]+""")
      
    val a = readLine()
    val b = readLine()
    if(isNumContain(a+b) && (a.toInt > 12345) && (a.toInt > 12345) && (a.toInt < b.toInt))
      println("OK")
    else
      println("NG")
  }
}
0