結果

問題 No.446 ゆきこーだーの雨と雪 (1)
ユーザー BurdenBurden
提出日時 2016-12-30 16:09:55
言語 Scala(Beta)
(3.4.0)
結果
WA  
実行時間 -
コード長 393 bytes
コンパイル時間 7,706 ms
コンパイル使用メモリ 247,112 KB
実行使用メモリ 62,728 KB
最終ジャッジ日時 2024-06-29 22:11:47
合計ジャッジ時間 21,734 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 768 ms
62,352 KB
testcase_01 AC 784 ms
62,480 KB
testcase_02 AC 784 ms
62,656 KB
testcase_03 AC 799 ms
62,668 KB
testcase_04 AC 768 ms
62,412 KB
testcase_05 AC 881 ms
62,632 KB
testcase_06 WA -
testcase_07 AC 783 ms
62,536 KB
testcase_08 WA -
testcase_09 AC 779 ms
62,548 KB
testcase_10 AC 776 ms
62,392 KB
testcase_11 AC 774 ms
62,420 KB
testcase_12 AC 761 ms
62,568 KB
testcase_13 AC 764 ms
62,468 KB
testcase_14 AC 776 ms
62,728 KB
testcase_15 AC 782 ms
62,484 KB
testcase_16 AC 801 ms
62,464 KB
権限があれば一括ダウンロードができます

ソースコード

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("""^[1-9]+[0-9]*|0""")
    val a = readLine()
    val b = readLine()
  
    if(isNumContain(a) && isNumContain(b) && (a.toInt <= 12345) && (a.toInt <= 12345))
      println("OK")
    else
      println("NG")
  }
}
0