結果

問題 No.633 バスの運賃
ユーザー 💕💖💞💕💖💞
提出日時 2018-03-07 13:36:21
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 323 ms / 2,000 ms
コード長 757 bytes
コンパイル時間 11,906 ms
コンパイル使用メモリ 447,132 KB
実行使用メモリ 57,176 KB
最終ジャッジ日時 2024-11-20 14:07:48
合計ジャッジ時間 15,566 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 300 ms
56,880 KB
testcase_01 AC 293 ms
56,912 KB
testcase_02 AC 310 ms
57,052 KB
testcase_03 AC 318 ms
57,176 KB
testcase_04 AC 323 ms
57,152 KB
testcase_05 AC 297 ms
57,000 KB
testcase_06 AC 293 ms
56,908 KB
testcase_07 AC 294 ms
56,884 KB
testcase_08 AC 313 ms
56,872 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.kt:2:10: warning: parameter 'args' is never used
fun main(args:Array<String>) {
         ^
Main.kt:12:30: warning: name shadowed: money
  (1..n).zip(money) { index, money ->
                             ^

ソースコード

diff #

data class Person(val step:Int, var charge:Int)
fun main(args:Array<String>) {

  val n = readLine()!!.toInt()

  val money = (1..n-1).map { readLine()!!.toInt() }.toMutableList()
  money.add(0)

  val buff = mutableListOf<Person>()

  var charges = 0
  (1..n).zip(money) { index, money ->
    val (down, up) = readLine()!!.split(" ").map { it.toInt() }
    //println("moeny ${index} ${money}")
    // add persons
    (1..up).map {
      buff.add( Person(index, 0) )
    }
    // remove persons
    (1..down).map {
      val head = buff[0]
      charges += head.charge
      buff.removeAt(0)
    }

    // charge all persons
    for( person in buff ) {
      person.charge += money
    }
    //println( buff )
    //println(charges)
  }
  println(charges)
}
0