結果

問題 No.446 ゆきこーだーの雨と雪 (1)
ユーザー nnsniconnsnico
提出日時 2019-05-01 15:42:52
言語 Scala(Beta)
(3.4.0)
結果
WA  
実行時間 -
コード長 464 bytes
コンパイル時間 8,964 ms
コンパイル使用メモリ 254,292 KB
実行使用メモリ 63,140 KB
最終ジャッジ日時 2024-07-01 23:21:49
合計ジャッジ時間 26,267 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 908 ms
62,656 KB
testcase_01 AC 916 ms
62,624 KB
testcase_02 AC 919 ms
62,644 KB
testcase_03 AC 940 ms
63,080 KB
testcase_04 AC 923 ms
62,660 KB
testcase_05 AC 920 ms
63,044 KB
testcase_06 WA -
testcase_07 AC 915 ms
62,596 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 AC 925 ms
62,936 KB
testcase_11 AC 897 ms
62,656 KB
testcase_12 AC 908 ms
63,104 KB
testcase_13 AC 897 ms
62,928 KB
testcase_14 AC 931 ms
63,064 KB
testcase_15 AC 956 ms
63,140 KB
testcase_16 AC 947 ms
62,740 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

  val aIntOpt = if (a.matches("^(?!.0)[0-9]{1,5}") && a.toInt <= 12345) {
    Some(a.toInt)
  } else {
    None
  }

  val bIntOpt = if (b.matches("^(?!.0)[0-9]{1,5}") && a.toInt <= 12345) {
    Some(b.toInt)
  } else {
    None
  }

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

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

}
0