結果

問題 No.446 ゆきこーだーの雨と雪 (1)
ユーザー HujiLeeHujiLee
提出日時 2016-11-26 00:32:54
言語 Scala(Beta)
(3.4.0)
結果
WA  
実行時間 -
コード長 569 bytes
コンパイル時間 8,398 ms
コンパイル使用メモリ 255,336 KB
実行使用メモリ 62,576 KB
最終ジャッジ日時 2024-06-29 20:34:03
合計ジャッジ時間 24,750 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 867 ms
62,196 KB
testcase_01 AC 863 ms
62,192 KB
testcase_02 AC 859 ms
62,068 KB
testcase_03 WA -
testcase_04 AC 876 ms
62,404 KB
testcase_05 AC 863 ms
62,112 KB
testcase_06 AC 873 ms
62,204 KB
testcase_07 AC 870 ms
62,208 KB
testcase_08 AC 877 ms
62,472 KB
testcase_09 AC 865 ms
62,320 KB
testcase_10 AC 874 ms
62,428 KB
testcase_11 AC 874 ms
62,296 KB
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
権限があれば一括ダウンロードができます

ソースコード

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")
  }

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

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


}
0