結果

問題 No.504 ゲーム大会(ランキング)
ユーザー 💕💖💞💕💖💞
提出日時 2017-06-24 18:50:21
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 1,034 ms / 2,000 ms
コード長 344 bytes
コンパイル時間 11,255 ms
コンパイル使用メモリ 426,916 KB
実行使用メモリ 88,024 KB
最終ジャッジ日時 2024-11-20 10:14:35
合計ジャッジ時間 23,026 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 304 ms
56,584 KB
testcase_01 AC 309 ms
56,844 KB
testcase_02 AC 310 ms
56,680 KB
testcase_03 AC 310 ms
56,824 KB
testcase_04 AC 313 ms
56,700 KB
testcase_05 AC 307 ms
56,708 KB
testcase_06 AC 304 ms
56,592 KB
testcase_07 AC 993 ms
87,544 KB
testcase_08 AC 992 ms
87,732 KB
testcase_09 AC 1,003 ms
86,540 KB
testcase_10 AC 1,034 ms
87,436 KB
testcase_11 AC 1,015 ms
86,860 KB
testcase_12 AC 976 ms
88,024 KB
testcase_13 AC 960 ms
86,884 KB
testcase_14 AC 1,022 ms
87,516 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.kt:1:10: warning: parameter 'args' is never used
fun main(args : Array<String>) {
         ^
Main.kt:15:15: warning: the expression is unused
      else -> null
              ^

ソースコード

diff #

fun main(args : Array<String>) {
  val n = readLine()!!.toInt()
  var head = readLine()!!.toInt()
  var rank = 1
  println(rank)
  val scores = (2..n).map {
    readLine()!!.toInt()
  }
  scores.map { score ->
    when  {
      score > head  -> {
        rank += 1
        head  = head
      }
      else -> null
    }
    println( rank )
  }
}
0