結果

問題 No.1130 Grid Numbers
ユーザー yumechiyumechi
提出日時 2021-02-24 00:14:51
言語 Scala(Beta)
(3.4.0)
結果
AC  
実行時間 982 ms / 2,000 ms
コード長 244 bytes
コンパイル時間 11,727 ms
コンパイル使用メモリ 259,392 KB
実行使用メモリ 66,144 KB
最終ジャッジ日時 2024-09-22 18:49:03
合計ジャッジ時間 23,812 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 961 ms
65,752 KB
testcase_01 AC 962 ms
65,816 KB
testcase_02 AC 965 ms
66,140 KB
testcase_03 AC 966 ms
65,880 KB
testcase_04 AC 961 ms
65,980 KB
testcase_05 AC 965 ms
66,144 KB
testcase_06 AC 969 ms
65,920 KB
testcase_07 AC 974 ms
65,840 KB
testcase_08 AC 971 ms
66,108 KB
testcase_09 AC 978 ms
65,916 KB
testcase_10 AC 982 ms
66,092 KB
testcase_11 AC 972 ms
65,960 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner

object Main extends App {
  val sc = new Scanner(System.in)

  val h = sc.nextInt
  val w = sc.nextInt
  println(Array.fill(h)(Array.fill(w)(sc.nextInt)).flatten.sorted.grouped(w).map(_.mkString(" ")).mkString("\n"))
}
0