結果
問題 | No.1130 Grid Numbers |
ユーザー | yuki |
提出日時 | 2020-08-20 01:02:50 |
言語 | Java21 (openjdk 21) |
結果 |
AC
|
実行時間 | 159 ms / 2,000 ms |
コード長 | 845 bytes |
コンパイル時間 | 2,281 ms |
コンパイル使用メモリ | 76,872 KB |
実行使用メモリ | 54,464 KB |
最終ジャッジ日時 | 2024-10-12 12:08:59 |
合計ジャッジ時間 | 4,746 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 121 ms
52,864 KB |
testcase_01 | AC | 135 ms
54,044 KB |
testcase_02 | AC | 138 ms
54,116 KB |
testcase_03 | AC | 133 ms
54,104 KB |
testcase_04 | AC | 133 ms
54,212 KB |
testcase_05 | AC | 136 ms
54,028 KB |
testcase_06 | AC | 133 ms
54,060 KB |
testcase_07 | AC | 132 ms
54,248 KB |
testcase_08 | AC | 137 ms
54,464 KB |
testcase_09 | AC | 146 ms
54,072 KB |
testcase_10 | AC | 159 ms
54,376 KB |
testcase_11 | AC | 153 ms
54,376 KB |
ソースコード
import java.util.*; public class Main { public static void main(String[] args) throws Exception { Scanner in = new Scanner(System.in); int height = in.nextInt(); int width = in.nextInt(); List<Integer> list = new ArrayList<>(); // insert input into List for(int i=0; i<height; i++){ for(int j=0; j<width; j++){ int num = in.nextInt(); list.add(num); Collections.sort(list); } } // output list for(int i=0; i<width*height; i++){ System.out.print(list.get(i)); System.out.print(" "); // iがwidthの倍数になると、改行する if(((i+1) % width) == 0){ System.out.println(""); } } } }