結果

問題 No.397 NO MORE KADOMATSU
ユーザー 💕💖💞💕💖💞
提出日時 2018-06-26 19:21:56
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 404 ms / 2,000 ms
コード長 648 bytes
コンパイル時間 15,278 ms
コンパイル使用メモリ 439,344 KB
実行使用メモリ 77,468 KB
平均クエリ数 33.17
最終ジャッジ日時 2024-07-16 15:54:50
合計ジャッジ時間 22,006 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 362 ms
76,920 KB
testcase_01 AC 363 ms
76,552 KB
testcase_02 AC 362 ms
76,808 KB
testcase_03 AC 397 ms
76,620 KB
testcase_04 AC 404 ms
76,996 KB
testcase_05 AC 389 ms
76,976 KB
testcase_06 AC 370 ms
77,336 KB
testcase_07 AC 363 ms
77,020 KB
testcase_08 AC 358 ms
76,576 KB
testcase_09 AC 355 ms
77,360 KB
testcase_10 AC 375 ms
76,532 KB
testcase_11 AC 367 ms
76,804 KB
testcase_12 AC 363 ms
77,468 KB
testcase_13 AC 375 ms
77,048 KB
testcase_14 AC 366 ms
77,152 KB
testcase_15 AC 357 ms
77,048 KB
testcase_16 AC 359 ms
76,920 KB
testcase_17 AC 364 ms
76,996 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.kt:1:10: warning: parameter 'args' is never used
fun main(args:Array<String>) {
         ^
Main.kt:2:7: warning: variable 'n' is never used
  val n = readLine()
      ^
Main.kt:6:7: warning: variable 'ans' is never used
  val ans = xs.sorted()
      ^
Main.kt:14:43: warning: unnecessary non-null assertion (!!) on a non-null receiver of type Int
    val min = xs.slice(i..xs.size-1).min()!!
                                          ^

ソースコード

diff #

fun main(args:Array<String>) {
  val n = readLine()

  val xs = readLine()!!.split(" ").map( String::toInt ).toMutableList()

  val ans = xs.sorted()

  val res = mutableListOf<Pair<Int,Int>>()
  var i = 0
  while(true) {
    if( i >=  xs.size-1 ) break

    val ta = xs[i]
    val min = xs.slice(i..xs.size-1).min()!!

    if( ta == min ) { i += 1;  continue }

    val tai = xs.slice(i..xs.size-1).lastIndexOf(min) + i
    xs[i]   = min
    xs[tai] = ta

    res.add( Pair(i, tai) )
    i += 1
  }

  //readLine()

  when {
    res.size == 0 -> println(0)
    else -> { println(res.size);  res.map { println("${it.first} ${it.second}") }  }
  }
}
0