結果

問題 No.1130 Grid Numbers
ユーザー yumechiyumechi
提出日時 2021-02-24 00:12:59
言語 Scala(Beta)
(3.4.0)
結果
AC  
実行時間 985 ms / 2,000 ms
コード長 274 bytes
コンパイル時間 10,978 ms
コンパイル使用メモリ 269,972 KB
実行使用メモリ 66,260 KB
最終ジャッジ日時 2024-09-22 18:46:43
合計ジャッジ時間 24,015 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 957 ms
65,852 KB
testcase_01 AC 972 ms
65,956 KB
testcase_02 AC 966 ms
65,892 KB
testcase_03 AC 957 ms
65,976 KB
testcase_04 AC 967 ms
66,048 KB
testcase_05 AC 970 ms
65,952 KB
testcase_06 AC 958 ms
65,992 KB
testcase_07 AC 964 ms
66,120 KB
testcase_08 AC 959 ms
66,072 KB
testcase_09 AC 966 ms
66,120 KB
testcase_10 AC 985 ms
66,260 KB
testcase_11 AC 970 ms
66,160 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner

object Main extends App {
  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 grouped w

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