結果

問題 No.446 ゆきこーだーの雨と雪 (1)
ユーザー BurdenBurden
提出日時 2016-12-30 16:11:23
言語 Scala(Beta)
(3.4.0)
結果
AC  
実行時間 859 ms / 2,000 ms
コード長 393 bytes
コンパイル時間 7,426 ms
コンパイル使用メモリ 242,964 KB
実行使用メモリ 62,716 KB
最終ジャッジ日時 2024-06-29 22:11:23
合計ジャッジ時間 23,262 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 859 ms
62,452 KB
testcase_01 AC 838 ms
62,472 KB
testcase_02 AC 852 ms
62,412 KB
testcase_03 AC 850 ms
62,572 KB
testcase_04 AC 837 ms
62,508 KB
testcase_05 AC 850 ms
62,400 KB
testcase_06 AC 854 ms
62,488 KB
testcase_07 AC 857 ms
62,464 KB
testcase_08 AC 858 ms
62,416 KB
testcase_09 AC 856 ms
62,388 KB
testcase_10 AC 839 ms
62,312 KB
testcase_11 AC 843 ms
62,464 KB
testcase_12 AC 845 ms
62,552 KB
testcase_13 AC 832 ms
62,716 KB
testcase_14 AC 837 ms
62,636 KB
testcase_15 AC 850 ms
62,588 KB
testcase_16 AC 846 ms
62,488 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) && (b.toInt <= 12345))
      println("OK")
    else
      println("NG")
  }
}
0