結果

問題 No.446 ゆきこーだーの雨と雪 (1)
ユーザー nnsniconnsnico
提出日時 2019-05-01 16:25:18
言語 Scala(Beta)
(3.4.0)
結果
AC  
実行時間 936 ms / 2,000 ms
コード長 453 bytes
コンパイル時間 10,184 ms
コンパイル使用メモリ 253,496 KB
実行使用メモリ 62,972 KB
最終ジャッジ日時 2024-07-01 23:25:12
合計ジャッジ時間 25,551 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 904 ms
62,972 KB
testcase_01 AC 899 ms
62,784 KB
testcase_02 AC 897 ms
62,532 KB
testcase_03 AC 880 ms
62,656 KB
testcase_04 AC 893 ms
62,916 KB
testcase_05 AC 914 ms
62,712 KB
testcase_06 AC 913 ms
62,796 KB
testcase_07 AC 936 ms
62,780 KB
testcase_08 AC 906 ms
62,636 KB
testcase_09 AC 933 ms
62,808 KB
testcase_10 AC 895 ms
62,720 KB
testcase_11 AC 917 ms
62,700 KB
testcase_12 AC 902 ms
62,452 KB
testcase_13 AC 888 ms
62,692 KB
testcase_14 AC 887 ms
62,672 KB
testcase_15 AC 891 ms
62,944 KB
testcase_16 AC 903 ms
62,492 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

object Main extends App {
  val a: String = scala.io.StdIn.readLine()
  val b: String = scala.io.StdIn.readLine()

  val resolveNum = (n: String) =>
    if (n.matches("^(?!(00|0.+))[0-9]{1,5}") && n.toInt <= 12345) {
      Some(n.toInt)
    } else {
      None
  }

  val aIntOpt = resolveNum(a)

  val bIntOpt = resolveNum(b)

  val ans = for {
    a <- aIntOpt
    b <- bIntOpt
  } yield {
    a + b
  }

  println(if (ans.nonEmpty) "OK" else "NG")

}
0