結果

問題 No.1851 Regular Tiling
ユーザー tnakao0123tnakao0123
提出日時 2022-02-25 22:13:01
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 92 ms / 2,000 ms
コード長 638 bytes
コンパイル時間 276 ms
コンパイル使用メモリ 41,540 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-07-03 17:05:38
合計ジャッジ時間 2,191 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 21 ms
5,376 KB
testcase_02 AC 25 ms
5,376 KB
testcase_03 AC 25 ms
5,376 KB
testcase_04 AC 23 ms
5,376 KB
testcase_05 AC 25 ms
5,376 KB
testcase_06 AC 28 ms
5,376 KB
testcase_07 AC 24 ms
5,376 KB
testcase_08 AC 24 ms
5,376 KB
testcase_09 AC 28 ms
5,376 KB
testcase_10 AC 24 ms
5,376 KB
testcase_11 AC 2 ms
5,376 KB
testcase_12 AC 2 ms
5,376 KB
testcase_13 AC 48 ms
5,376 KB
testcase_14 AC 92 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

/* -*- coding: utf-8 -*-
 *
 * 1851.cc:  No.1851 Regular Tiling - yukicoder
 */

#include<cstdio>
#include<algorithm>
 
using namespace std;

/* constant */

/* typedef */

/* global variables */

inline int cell(int y, int x) {
  return (y % 3 > 0 ? 1 : 0) + (x % 3 > 0 ? 1 : 0);
}

/* subroutines */

/* main */

int main() {
  int tn;
  scanf("%d", &tn);

  while (tn--) {
    int h, w;
    scanf("%d%d", &h, &w);

    int y0 = (h % 3 == 2) ? 1 : 0;
    int x0 = (w % 3 == 2) ? 1 : 0;

    for (int y = 0; y < h; y++)
      for (int x = 0; x < w; x++)
	printf("%d%c", cell(y + y0, x + x0), (x + 1 < w) ? ' ' : '\n');
  }
  return 0;
}
0