結果

問題 No.208 王将
ユーザー ともきともき
提出日時 2015-07-18 17:27:15
言語 Scala(Beta)
(3.4.0)
結果
AC  
実行時間 902 ms / 1,000 ms
コード長 1,430 bytes
コンパイル時間 11,698 ms
コンパイル使用メモリ 270,468 KB
実行使用メモリ 64,904 KB
最終ジャッジ日時 2024-06-29 02:29:11
合計ジャッジ時間 34,820 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 879 ms
62,980 KB
testcase_01 AC 887 ms
63,008 KB
testcase_02 AC 878 ms
63,108 KB
testcase_03 AC 891 ms
62,820 KB
testcase_04 AC 893 ms
63,200 KB
testcase_05 AC 900 ms
62,936 KB
testcase_06 AC 893 ms
64,904 KB
testcase_07 AC 894 ms
63,124 KB
testcase_08 AC 901 ms
63,088 KB
testcase_09 AC 884 ms
62,860 KB
testcase_10 AC 891 ms
63,060 KB
testcase_11 AC 892 ms
62,840 KB
testcase_12 AC 887 ms
62,900 KB
testcase_13 AC 888 ms
62,880 KB
testcase_14 AC 879 ms
63,056 KB
testcase_15 AC 899 ms
63,136 KB
testcase_16 AC 897 ms
63,208 KB
testcase_17 AC 902 ms
62,868 KB
testcase_18 AC 897 ms
63,032 KB
testcase_19 AC 901 ms
62,972 KB
testcase_20 AC 900 ms
62,976 KB
testcase_21 AC 890 ms
63,164 KB
testcase_22 AC 894 ms
62,920 KB
testcase_23 AC 901 ms
63,004 KB
testcase_24 AC 885 ms
62,900 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import scala.io.StdIn.readLine
import scala.collection.mutable.PriorityQueue
import scala.annotation.tailrec

// PriorityQueue[Long]()(scala.math.Ordering.Long.reverse)
package net.pushl {
  package number {
    // Prime  (Prime.scala)
    // Number (Number.scala)
  }
  package string {
    // RollingHash (RollingHash.scala)
  }
  package geometry {
    // Point
    // Segment
    // Line
  }
  object EnRich {
    implicit class AString(val self : String) extends AnyVal {
      def splitToIntVector    = self.split(" ").map(_.toInt).toVector
      def splitToDoubleVector = self.split(" ").map(_.toDouble).toVector

      def splitToDoubleTuple2 = splitTuple2(() => splitToDoubleVector)
      def splitToIntTuple2    = splitTuple2(() => splitToIntVector)
      def splitToDoubleTuple3 = splitTuple3(() => splitToDoubleVector)
      def splitToIntTuple3    = splitTuple3(() => splitToIntVector)

      private def splitTuple2[X](splitTo: () => Vector[X]) = {
        val ab = splitTo()
        (ab(0),ab(1))
      }
      private def splitTuple3[X](splitTo: () => Vector[X]) = {
        val abc = splitTo()
        (abc(0),abc(1),abc(2))
      }
    }
  }
}

import net.pushl.EnRich._
object Main {
  def main(args : Array[String]) : Unit = {
    val (x,y)   = readLine.splitToIntTuple2
    val (x2,y2) = readLine.splitToIntTuple2
    if(x == y && x2 == y2 && x2 < x)
      println(x+1)
    else
      println(x max y)
  }
}

0