結果

問題 No.159 刺さらないUSB
ユーザー ともきともき
提出日時 2015-07-18 17:01:32
言語 Scala(Beta)
(3.4.0)
結果
AC  
実行時間 936 ms / 1,000 ms
コード長 1,169 bytes
コンパイル時間 11,690 ms
コンパイル使用メモリ 261,728 KB
実行使用メモリ 63,288 KB
最終ジャッジ日時 2024-07-01 23:48:29
合計ジャッジ時間 32,023 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 920 ms
63,180 KB
testcase_01 AC 915 ms
62,964 KB
testcase_02 AC 936 ms
63,252 KB
testcase_03 AC 927 ms
62,940 KB
testcase_04 AC 925 ms
63,140 KB
testcase_05 AC 927 ms
63,184 KB
testcase_06 AC 925 ms
63,136 KB
testcase_07 AC 926 ms
63,120 KB
testcase_08 AC 926 ms
63,140 KB
testcase_09 AC 928 ms
63,088 KB
testcase_10 AC 927 ms
63,116 KB
testcase_11 AC 921 ms
63,284 KB
testcase_12 AC 931 ms
62,876 KB
testcase_13 AC 929 ms
63,024 KB
testcase_14 AC 924 ms
63,152 KB
testcase_15 AC 929 ms
62,780 KB
testcase_16 AC 918 ms
63,288 KB
testcase_17 AC 921 ms
63,204 KB
testcase_18 AC 916 ms
63,148 KB
testcase_19 AC 917 ms
63,092 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)
      private def splitTuple2[X](splitTo: () => Vector[X]) = {
        val ab = splitTo()
        (ab(0),ab(1))
      }
    }
  }
}

import net.pushl.EnRich._
object Main {
  def solve(p: Double, q: Double) = {
    val p1 = (1-p)*q
    val p2 = p*(1-q)*q
    if(p1 < p2) "YES" else "NO"
  }
  def main(args : Array[String]) : Unit = {
    val (p,q) = readLine.splitToDoubleTuple2
    println(solve(p,q))
  }
}
0