結果

問題 No.446 ゆきこーだーの雨と雪 (1)
ユーザー HujiLeeHujiLee
提出日時 2016-11-26 00:35:58
言語 Scala(Beta)
(3.4.0)
結果
AC  
実行時間 889 ms / 2,000 ms
コード長 659 bytes
コンパイル時間 8,366 ms
コンパイル使用メモリ 259,432 KB
実行使用メモリ 62,560 KB
最終ジャッジ日時 2024-06-29 20:35:21
合計ジャッジ時間 24,530 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 874 ms
62,452 KB
testcase_01 AC 879 ms
62,268 KB
testcase_02 AC 877 ms
62,128 KB
testcase_03 AC 853 ms
62,260 KB
testcase_04 AC 862 ms
62,300 KB
testcase_05 AC 885 ms
62,272 KB
testcase_06 AC 877 ms
62,360 KB
testcase_07 AC 870 ms
62,116 KB
testcase_08 AC 858 ms
62,380 KB
testcase_09 AC 850 ms
62,188 KB
testcase_10 AC 878 ms
62,208 KB
testcase_11 AC 889 ms
62,400 KB
testcase_12 AC 862 ms
62,560 KB
testcase_13 AC 881 ms
62,192 KB
testcase_14 AC 870 ms
62,532 KB
testcase_15 AC 866 ms
62,388 KB
testcase_16 AC 850 ms
62,348 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import scala.io.StdIn

/**
  * Created by Administrator on 2016/11/25 0025.
  */
object Main extends App {
  def ng(): Unit = {
    println("NG")
  }

  def ok(): Unit = {
    println("OK")
  }

  def leadingZero(str:String):Boolean={
    return (str.charAt(0)=='0'&&str.length>1)
  }

  try {
    var A = StdIn.readLine()
    var B = StdIn.readLine()
    if (leadingZero(A)||leadingZero(B)) {
      throw new Exception("leading zero")
    }
    var (a, b) = (A.toInt, B.toInt)
    if (math.max(a, b) > 12345) {
      throw new Exception("> 12345")
    }
    ok()

  } catch {
    case ex: Exception => {
      Console.err.println(ex)
      ng()
    }
  }


}
0