結果

問題 No.846 メダル
ユーザー pekempeypekempey
提出日時 2019-07-25 04:33:42
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 283 ms / 2,000 ms
コード長 326 bytes
コンパイル時間 13,519 ms
コンパイル使用メモリ 439,532 KB
実行使用メモリ 57,036 KB
最終ジャッジ日時 2024-11-20 18:59:57
合計ジャッジ時間 18,837 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 282 ms
56,924 KB
testcase_01 AC 283 ms
56,888 KB
testcase_02 AC 270 ms
56,840 KB
testcase_03 AC 277 ms
56,996 KB
testcase_04 AC 274 ms
56,904 KB
testcase_05 AC 273 ms
56,952 KB
testcase_06 AC 275 ms
57,036 KB
testcase_07 AC 267 ms
56,944 KB
testcase_08 AC 270 ms
56,856 KB
testcase_09 AC 268 ms
56,848 KB
testcase_10 AC 273 ms
56,988 KB
testcase_11 AC 268 ms
56,848 KB
testcase_12 AC 271 ms
56,892 KB
testcase_13 AC 270 ms
56,856 KB
testcase_14 AC 265 ms
56,908 KB
testcase_15 AC 264 ms
56,880 KB
testcase_16 AC 272 ms
56,860 KB
testcase_17 AC 278 ms
57,000 KB
testcase_18 AC 271 ms
56,992 KB
testcase_19 AC 270 ms
56,888 KB
testcase_20 AC 263 ms
56,936 KB
testcase_21 AC 274 ms
56,868 KB
testcase_22 AC 266 ms
56,960 KB
testcase_23 AC 261 ms
56,964 KB
testcase_24 AC 269 ms
56,872 KB
testcase_25 AC 266 ms
56,964 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.kt:3:10: warning: parameter 'args' is never used
fun main(args: Array<String>) {
         ^

ソースコード

diff #

fun readLongs(): List<Long> = readLine()!!.split(" ").map{it.toLong()}

fun main(args: Array<String>) {
  val (P, Q, R) = readLongs()
  val (A, B, C) = readLongs()
  val l = maxOf(P*(A-1), Q*(A+B-1), R*(A+B+C-1)) + 1
  val r = minOf(P*A, Q*(A+B), R*(A+B+C))
  if (l > r) {
    println(-1)
  } else {
    println("$l $r")
  }
}
0