結果

問題 No.490 yukiソート
ユーザー 💕💖💞💕💖💞
提出日時 2017-04-01 20:16:51
言語 Kotlin
(1.9.23)
結果
WA  
実行時間 -
コード長 442 bytes
コンパイル時間 10,433 ms
コンパイル使用メモリ 437,884 KB
実行使用メモリ 73,016 KB
最終ジャッジ日時 2024-11-20 07:47:02
合計ジャッジ時間 23,666 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 277 ms
57,084 KB
testcase_01 WA -
testcase_02 AC 278 ms
57,012 KB
testcase_03 AC 276 ms
57,056 KB
testcase_04 AC 311 ms
57,232 KB
testcase_05 AC 318 ms
57,284 KB
testcase_06 AC 315 ms
57,204 KB
testcase_07 AC 314 ms
57,180 KB
testcase_08 AC 308 ms
57,160 KB
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 AC 279 ms
56,948 KB
testcase_25 AC 278 ms
56,980 KB
testcase_26 AC 287 ms
57,148 KB
testcase_27 AC 285 ms
57,008 KB
testcase_28 AC 283 ms
56,872 KB
testcase_29 AC 282 ms
57,164 KB
testcase_30 AC 277 ms
57,160 KB
testcase_31 WA -
testcase_32 WA -
testcase_33 WA -
testcase_34 WA -
testcase_35 WA -
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.kt:1:10: warning: parameter 'args' is never used
fun main(args: Array<String> ) {
         ^

ソースコード

diff #

fun main(args: Array<String> ) {
  val n  = readLine()!!.toInt()
  val ts:MutableList<Int> = readLine()!!.split(" ").map { x -> x.toInt() }.toMutableList()
  (1..2*n - 3).map { i ->
    for(p in (0..i) ) {
      val q = i - p 
      if( n <= q ) { continue } 
      if( p >= q ) { break }
      if(ts[p] > ts[q]) {
          val swap = ts[p]
          ts[p] = ts[q]
          ts[q] = swap
      }
    }
  } 
  println(ts.joinToString(" ") )
}
0