結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 914 ms
62,964 KB
testcase_01 AC 909 ms
63,104 KB
testcase_02 AC 915 ms
62,720 KB
testcase_03 AC 940 ms
62,980 KB
testcase_04 AC 924 ms
62,700 KB
testcase_05 AC 930 ms
62,828 KB
testcase_06 AC 933 ms
62,856 KB
testcase_07 AC 920 ms
63,072 KB
testcase_08 AC 946 ms
62,672 KB
testcase_09 WA -
testcase_10 AC 936 ms
62,752 KB
testcase_11 AC 915 ms
62,632 KB
testcase_12 AC 938 ms
63,108 KB
testcase_13 WA -
testcase_14 AC 930 ms
62,824 KB
testcase_15 AC 926 ms
62,980 KB
testcase_16 AC 922 ms
62,784 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}")) {
    Some(a.toInt)
  } else {
    None
  }

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

  val ans = for {
    a <- aIntOpt
    b <- bIntOpt
    if (a + b) <= 12345
  } yield {
    a + b
  }

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