結果

問題 No.1851 Regular Tiling
ユーザー ripityripity
提出日時 2022-02-25 21:58:21
言語 Java21
(openjdk 21)
結果
AC  
実行時間 500 ms / 2,000 ms
コード長 895 bytes
コンパイル時間 2,416 ms
コンパイル使用メモリ 86,632 KB
実行使用メモリ 50,088 KB
最終ジャッジ日時 2024-07-03 16:47:50
合計ジャッジ時間 8,837 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 137 ms
41,892 KB
testcase_01 AC 318 ms
46,992 KB
testcase_02 AC 350 ms
49,564 KB
testcase_03 AC 333 ms
47,580 KB
testcase_04 AC 328 ms
47,760 KB
testcase_05 AC 334 ms
46,808 KB
testcase_06 AC 355 ms
47,932 KB
testcase_07 AC 337 ms
47,988 KB
testcase_08 AC 342 ms
47,784 KB
testcase_09 AC 357 ms
48,316 KB
testcase_10 AC 349 ms
47,352 KB
testcase_11 AC 178 ms
42,432 KB
testcase_12 AC 168 ms
42,480 KB
testcase_13 AC 415 ms
49,964 KB
testcase_14 AC 500 ms
50,088 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

public class Main {
    
    public static Scanner sc = new Scanner(System.in);
    public static PrintWriter pw = new PrintWriter(System.out);
    
    public static void main(String[] args) {
        
        int t = sc.nextInt();
        while( t > 0 ) {
            solve();
            t--;
        }
        
        pw.flush();
        
    }
    
    static void solve() {
        
        int H = sc.nextInt();
        int W = sc.nextInt();
        int[][] g = {
            {2,2,1},
            {2,2,1},
            {1,1,0}
        };
        int idi = H%3 == 1 ? 2 : 0;
        int idj = W%3 == 1 ? 2 : 0;
        for( int i = 0; i < H; i++ ) {
            for( int j = 0; j < W; j++ ) {
                pw.print(g[(idi+i)%3][(idj+j)%3]+" ");
            }
            pw.println();
        }
        
        pw.println();
        
    }
    
}
0