結果

問題 No.401 数字の渦巻き
ユーザー 💕💖💞💕💖💞
提出日時 2017-09-09 15:39:01
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 554 ms / 2,000 ms
コード長 1,552 bytes
コンパイル時間 14,398 ms
コンパイル使用メモリ 445,448 KB
実行使用メモリ 71,404 KB
最終ジャッジ日時 2024-11-20 11:57:09
合計ジャッジ時間 28,270 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 362 ms
57,920 KB
testcase_01 AC 364 ms
58,004 KB
testcase_02 AC 366 ms
57,892 KB
testcase_03 AC 368 ms
58,016 KB
testcase_04 AC 374 ms
57,664 KB
testcase_05 AC 371 ms
58,060 KB
testcase_06 AC 381 ms
57,872 KB
testcase_07 AC 379 ms
57,900 KB
testcase_08 AC 380 ms
58,024 KB
testcase_09 AC 380 ms
57,716 KB
testcase_10 AC 391 ms
57,920 KB
testcase_11 AC 395 ms
57,956 KB
testcase_12 AC 389 ms
58,152 KB
testcase_13 AC 396 ms
57,964 KB
testcase_14 AC 399 ms
57,792 KB
testcase_15 AC 420 ms
58,180 KB
testcase_16 AC 410 ms
58,128 KB
testcase_17 AC 417 ms
58,000 KB
testcase_18 AC 414 ms
57,992 KB
testcase_19 AC 433 ms
58,196 KB
testcase_20 AC 435 ms
58,252 KB
testcase_21 AC 434 ms
58,216 KB
testcase_22 AC 440 ms
60,488 KB
testcase_23 AC 459 ms
61,896 KB
testcase_24 AC 462 ms
61,732 KB
testcase_25 AC 459 ms
61,944 KB
testcase_26 AC 459 ms
62,148 KB
testcase_27 AC 484 ms
62,800 KB
testcase_28 AC 551 ms
71,304 KB
testcase_29 AC 554 ms
71,404 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.kt:1:11: warning: parameter 'args' is never used
fun main( args : Array<String> ) {
          ^
Main.kt:7:20: warning: parameter 'x' is never used, could be renamed to _
    (0..n-1).map { x ->
                   ^

ソースコード

diff #

fun main( args : Array<String> ) {
  val n = readLine()!!.toInt()
  val mm = mutableListOf<MutableList<Int?>>()

  (0..n-1).map { y ->
    mm.add( mutableListOf<Int?>() )
    (0..n-1).map { x ->
      mm[y].add( null )
    }
  }
  // scan
  
  var sX = 0
  var sY = n-1
  var sX3 = n-1
  var sY3 = 0

  var cnt = 1
  cont@while(true) {
    // 1st
    if ( mm[sX].filter{ it == null } != listOf<Int?>() ) {
      for( i in (0..mm.size-1) ) {
        if( mm[sX][i] == null ) {
          mm[sX][i] = cnt
          cnt++
          continue@cont
        }
      }
    }else if( (0..n-1).map{ mm[it][sY] }.filter { it == null } != listOf<Int?>() ) {
      for( i in (0..n-1) ) {
        if( mm[i][sY] == null ) {
          mm[i][sY] = cnt
          cnt++
          continue@cont
        }
      }
    }else if ( mm[sX3].filter{ it == null } != listOf<Int?>() ) {
      for( i in (mm.size-1 downTo 0) ) {
        if( mm[sX3][i] == null ) {
          mm[sX3][i] = cnt
          cnt++
          continue@cont
        }
      }
    }else if( (0..n-1).map{ mm[it][sY3] }.filter { it == null } != listOf<Int?>() ) {
      for( i in (mm.size-1 downTo 0) ) {
        if( mm[i][sY3] == null ) {
          mm[i][sY3] = cnt
          cnt++
          continue@cont
        }
      }
    } else {
      sX += 1
      sY -= 1
      sX3 -= 1
      sY3 += 1
      if( mm.flatten().filter{ it == null }.size == 0 ) {
        break@cont
      }

    }
  }
  mm.map { y ->
    y.map { x ->
      "%03d".format(x)
    }.joinToString(" ")
    .let {
      println(it)
    }
  }
}
0