結果

問題 No.1130 Grid Numbers
ユーザー yumechiyumechi
提出日時 2021-02-24 00:06:13
言語 Scala(Beta)
(3.4.0)
結果
AC  
実行時間 997 ms / 2,000 ms
コード長 491 bytes
コンパイル時間 12,031 ms
コンパイル使用メモリ 262,524 KB
実行使用メモリ 66,264 KB
最終ジャッジ日時 2024-09-22 18:40:17
合計ジャッジ時間 25,473 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 971 ms
65,960 KB
testcase_01 AC 978 ms
66,040 KB
testcase_02 AC 984 ms
66,012 KB
testcase_03 AC 970 ms
66,036 KB
testcase_04 AC 983 ms
65,864 KB
testcase_05 AC 981 ms
66,144 KB
testcase_06 AC 975 ms
66,080 KB
testcase_07 AC 972 ms
66,096 KB
testcase_08 AC 986 ms
66,152 KB
testcase_09 AC 984 ms
66,264 KB
testcase_10 AC 997 ms
66,092 KB
testcase_11 AC 994 ms
66,204 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner

object Main extends App {
  def calc(ar: Array[Int], w: Int): Array[String] = {
    if(ar.length > w) {
      val f = ar.splitAt(w)
      Array(f._1.mkString(" ")).appendedAll(calc(f._2, w))
    } else {
      Array(ar.mkString(" "))
    }
  }

  val sc = new Scanner(System.in)

  val h = sc.nextInt
  val w = sc.nextInt
  val arr = Array.fill(h)(Array.fill(w)(sc.nextInt))
  val ar = arr.flatten.sorted

  println(calc(ar, w).map(_.mkString("")).mkString("\n"))
}
0