結果

問題 No.1974 2x2 Flipper
ユーザー hir355hir355
提出日時 2022-06-10 22:26:55
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 470 bytes
コンパイル時間 334 ms
コンパイル使用メモリ 82,364 KB
実行使用メモリ 86,400 KB
最終ジャッジ日時 2024-09-21 06:33:34
合計ジャッジ時間 5,430 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,352 KB
testcase_01 AC 67 ms
76,928 KB
testcase_02 AC 49 ms
63,232 KB
testcase_03 AC 117 ms
82,244 KB
testcase_04 AC 84 ms
79,040 KB
testcase_05 WA -
testcase_06 AC 101 ms
80,384 KB
testcase_07 AC 91 ms
79,184 KB
testcase_08 AC 60 ms
74,624 KB
testcase_09 AC 103 ms
80,768 KB
testcase_10 WA -
testcase_11 AC 94 ms
79,580 KB
testcase_12 AC 126 ms
82,660 KB
testcase_13 AC 98 ms
79,960 KB
testcase_14 AC 79 ms
78,296 KB
testcase_15 AC 131 ms
83,584 KB
testcase_16 WA -
testcase_17 AC 110 ms
81,664 KB
testcase_18 AC 55 ms
73,216 KB
testcase_19 AC 65 ms
76,672 KB
testcase_20 AC 82 ms
78,892 KB
testcase_21 AC 150 ms
85,760 KB
testcase_22 AC 149 ms
86,400 KB
testcase_23 AC 152 ms
85,888 KB
testcase_24 WA -
testcase_25 AC 40 ms
51,968 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, m = map(int, input().split())
if n == 1 or m == 1:
    ans = [[0] * m for _ in range(n)]
    print(0)
    for row in ans:
        print(*row)
    exit(0)
x = n // 2 * 2
y = m // 2 * 2
ans = [[0] * m for _ in range(n)]
for i in range(x):
    for j in range(y):
        ans[i][j] = 1
if n % 2 == 1 and m % 2 == 1:
    print(x * y + 2)
    ans[-1][-1] = 1
    ans[-1][-2] = 1
    ans[-2][-1] = 1
    ans[-2][-2] = 0
else:
    print(x * y)
for row in ans:
    print(*row)
0