結果

問題 No.490 yukiソート
ユーザー 💕💖💞💕💖💞
提出日時 2017-04-01 20:23:03
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 412 ms / 2,000 ms
コード長 448 bytes
コンパイル時間 10,370 ms
コンパイル使用メモリ 439,728 KB
実行使用メモリ 72,508 KB
最終ジャッジ日時 2024-11-20 07:50:19
合計ジャッジ時間 23,259 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 279 ms
55,532 KB
testcase_01 AC 280 ms
57,076 KB
testcase_02 AC 278 ms
56,716 KB
testcase_03 AC 280 ms
56,840 KB
testcase_04 AC 323 ms
57,228 KB
testcase_05 AC 306 ms
57,344 KB
testcase_06 AC 313 ms
57,236 KB
testcase_07 AC 317 ms
57,108 KB
testcase_08 AC 311 ms
57,232 KB
testcase_09 AC 311 ms
57,260 KB
testcase_10 AC 319 ms
57,384 KB
testcase_11 AC 316 ms
57,112 KB
testcase_12 AC 313 ms
57,196 KB
testcase_13 AC 316 ms
57,448 KB
testcase_14 AC 405 ms
72,116 KB
testcase_15 AC 404 ms
72,508 KB
testcase_16 AC 398 ms
72,320 KB
testcase_17 AC 399 ms
72,440 KB
testcase_18 AC 402 ms
71,896 KB
testcase_19 AC 400 ms
72,440 KB
testcase_20 AC 404 ms
72,396 KB
testcase_21 AC 406 ms
72,276 KB
testcase_22 AC 400 ms
72,052 KB
testcase_23 AC 412 ms
72,296 KB
testcase_24 AC 278 ms
56,952 KB
testcase_25 AC 281 ms
56,956 KB
testcase_26 AC 285 ms
56,916 KB
testcase_27 AC 285 ms
56,820 KB
testcase_28 AC 275 ms
57,028 KB
testcase_29 AC 276 ms
56,792 KB
testcase_30 AC 286 ms
56,908 KB
testcase_31 AC 279 ms
56,884 KB
testcase_32 AC 279 ms
56,792 KB
testcase_33 AC 280 ms
56,968 KB
testcase_34 AC 277 ms
56,820 KB
testcase_35 AC 279 ms
57,052 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
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()
  for(i in (1..2*n - 3 - 1)) { 
    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