結果

問題 No.1048 Zero (Advanced)
ユーザー yakamotoyakamoto
提出日時 2020-05-08 21:41:46
言語 Kotlin
(1.9.10)
結果
AC  
実行時間 279 ms / 2,000 ms
コード長 2,516 bytes
コンパイル時間 16,403 ms
コンパイル使用メモリ 429,168 KB
実行使用メモリ 50,580 KB
最終ジャッジ日時 2023-09-17 02:20:50
合計ジャッジ時間 23,467 ms
ジャッジサーバーID
(参考情報)
judge14 / judge13
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 277 ms
50,416 KB
testcase_01 AC 274 ms
50,520 KB
testcase_02 AC 271 ms
50,312 KB
testcase_03 AC 275 ms
50,388 KB
testcase_04 AC 275 ms
50,336 KB
testcase_05 AC 273 ms
50,412 KB
testcase_06 AC 276 ms
50,320 KB
testcase_07 AC 272 ms
50,420 KB
testcase_08 AC 275 ms
50,308 KB
testcase_09 AC 277 ms
50,512 KB
testcase_10 AC 276 ms
50,488 KB
testcase_11 AC 275 ms
50,464 KB
testcase_12 AC 276 ms
50,368 KB
testcase_13 AC 279 ms
50,364 KB
testcase_14 AC 275 ms
50,340 KB
testcase_15 AC 277 ms
50,388 KB
testcase_16 AC 276 ms
50,336 KB
testcase_17 AC 275 ms
50,248 KB
testcase_18 AC 275 ms
50,580 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.BufferedReader
import java.io.InputStream
import java.io.InputStreamReader
import java.util.*
import kotlin.math.abs
import kotlin.math.max
import kotlin.math.min

val MOD = 1_000_000_007L

class Solver(stream: InputStream, private val out: java.io.PrintWriter) {
  fun solve() {
    val ans = if (solve2()) "Yes" else "No"
    out.println(ans)
  }

  fun solve2(): Boolean {
    val L = nl()
    val R = nl()
    val M = nl()
    val K = nl()
    if (K == 0L) return true
    val l = L * K
    val r = R * K

    return l % M == 0L || r / M > l / M
  }













































  private val isDebug = try {
    // なんか本番でエラーでる
    System.getenv("MY_DEBUG") != null
  } catch (t: Throwable) {
    false
  }

  private var tokenizer: StringTokenizer? = null
  private val reader = BufferedReader(InputStreamReader(stream), 32768)
  private fun next(): String {
    while (tokenizer == null || !tokenizer!!.hasMoreTokens()) {
      tokenizer = StringTokenizer(reader.readLine())
    }
    return tokenizer!!.nextToken()
  }

  private fun ni() = next().toInt()
  private fun nl() = next().toLong()
  private fun ns() = next()
  private fun na(n: Int, offset: Int = 0): IntArray {
    return map(n) { ni() + offset }
  }
  private fun nal(n: Int, offset: Int = 0): LongArray {
    val res = LongArray(n)
    for (i in 0 until n) {
      res[i] = nl() + offset
    }
    return res
  }

  private fun na2(n: Int, offset: Int = 0): Array<IntArray> {
    val a  = Array(2){IntArray(n)}
    for (i in 0 until n) {
      for (e in a) {
        e[i] = ni() + offset
      }
    }
    return a
  }

  private inline fun map(n: Int, f: (Int) -> Int): IntArray {
    val res = IntArray(n)
    for (i in 0 until n) {
      res[i] = f(i)
    }
    return res
  }

  private inline fun debug(msg: () -> String) {
    if (isDebug) System.err.println(msg())
  }

  private fun debug(a: LongArray) {
    debug { a.joinToString(" ") }
  }

  private fun debug(a: IntArray) {
    debug { a.joinToString(" ") }
  }

  private fun debug(a: BooleanArray) {
    debug { a.map { if (it) 1 else 0 }.joinToString("") }
  }

  private fun debugDim(A: Array<IntArray>) {
    if (isDebug) {
      for (a in A) {
        debug(a)
      }
    }
  }

  /**
   * 勝手にimport消されるのを防ぎたい
   */
  private fun hoge() {
    min(1, 2)
    max(1, 2)
    abs(-10)
  }
}

fun main() {
  val out = java.io.PrintWriter(System.out)
  Solver(System.`in`, out).solve()
  out.flush()
}
0