結果

問題 No.1851 Regular Tiling
ユーザー ripityripity
提出日時 2022-02-25 21:55:48
言語 Java21
(openjdk 21)
結果
AC  
実行時間 558 ms / 2,000 ms
コード長 1,389 bytes
コンパイル時間 2,267 ms
コンパイル使用メモリ 79,764 KB
実行使用メモリ 63,900 KB
最終ジャッジ日時 2024-07-03 16:45:14
合計ジャッジ時間 8,964 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 143 ms
54,464 KB
testcase_01 AC 344 ms
58,396 KB
testcase_02 AC 374 ms
60,424 KB
testcase_03 AC 352 ms
59,108 KB
testcase_04 AC 356 ms
59,072 KB
testcase_05 AC 371 ms
58,584 KB
testcase_06 AC 382 ms
60,356 KB
testcase_07 AC 348 ms
58,176 KB
testcase_08 AC 352 ms
58,272 KB
testcase_09 AC 365 ms
59,520 KB
testcase_10 AC 367 ms
58,204 KB
testcase_11 AC 178 ms
54,732 KB
testcase_12 AC 181 ms
54,460 KB
testcase_13 AC 453 ms
61,456 KB
testcase_14 AC 558 ms
63,900 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();
        if( H == 1 ) {
            int[] g = {1,1,0};
            int id = W%3 == 1 ? 2 : 0;
            for( int i = 0; i < W; i++ ) {
                pw.print(g[(id+i)%3]+" ");
            }
            pw.println();
        }else if( W == 1 ) {
            int[] g = {1,1,0};
            int id = H%3 == 1 ? 2 : 0;
            for( int i = 0; i < H; i++ ) {
                pw.println(g[(id+i)%3]);
            }
        }else {
            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