結果

問題 No.1130 Grid Numbers
ユーザー face4face4
提出日時 2020-08-02 12:11:30
言語 Java21
(openjdk 21)
結果
AC  
実行時間 63 ms / 2,000 ms
コード長 876 bytes
コンパイル時間 2,235 ms
コンパイル使用メモリ 75,856 KB
実行使用メモリ 37,244 KB
最終ジャッジ日時 2024-07-18 10:33:59
合計ジャッジ時間 3,544 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 51 ms
36,964 KB
testcase_01 AC 52 ms
37,192 KB
testcase_02 AC 53 ms
37,088 KB
testcase_03 AC 52 ms
36,676 KB
testcase_04 AC 52 ms
36,804 KB
testcase_05 AC 52 ms
37,100 KB
testcase_06 AC 51 ms
37,084 KB
testcase_07 AC 54 ms
37,060 KB
testcase_08 AC 53 ms
37,136 KB
testcase_09 AC 56 ms
37,192 KB
testcase_10 AC 63 ms
37,244 KB
testcase_11 AC 56 ms
37,096 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;
import java.util.ArrayList;

public class Main {
    public static void main(String[] args) throws IOException {
        BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
        String[] line = br.readLine().split(" ");
        int h = Integer.parseInt(line[0]), w = Integer.parseInt(line[1]);
        ArrayList<Integer> arr = new ArrayList<Integer>(h * w);
        for (int i = 0; i < h; i++) {
            line = br.readLine().split(" ");
            for (int j = 0; j < w; j++) {
                arr.add(Integer.parseInt(line[j]));
            }
        }
        arr.sort(null);
        for (int i = 0; i < h; i++) {
            for (int j = 0; j < w; j++) {
                if (j > 0) System.out.print(" ");
                System.out.print(arr.get(i * w + j));
            }
            System.out.println();
        }
    }
}
0