結果

問題 No.1974 2x2 Flipper
ユーザー hir355hir355
提出日時 2022-06-10 22:32:34
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 153 ms / 2,000 ms
コード長 653 bytes
コンパイル時間 156 ms
コンパイル使用メモリ 82,216 KB
実行使用メモリ 86,144 KB
最終ジャッジ日時 2024-09-21 07:08:49
合計ジャッジ時間 5,050 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,096 KB
testcase_01 AC 66 ms
76,672 KB
testcase_02 AC 49 ms
63,360 KB
testcase_03 AC 111 ms
82,048 KB
testcase_04 AC 82 ms
78,720 KB
testcase_05 AC 69 ms
76,928 KB
testcase_06 AC 99 ms
80,000 KB
testcase_07 AC 92 ms
78,336 KB
testcase_08 AC 58 ms
75,008 KB
testcase_09 AC 102 ms
80,640 KB
testcase_10 AC 55 ms
73,472 KB
testcase_11 AC 92 ms
79,360 KB
testcase_12 AC 118 ms
82,304 KB
testcase_13 AC 94 ms
79,232 KB
testcase_14 AC 78 ms
78,480 KB
testcase_15 AC 126 ms
83,712 KB
testcase_16 AC 56 ms
73,856 KB
testcase_17 AC 108 ms
81,516 KB
testcase_18 AC 54 ms
74,112 KB
testcase_19 AC 64 ms
77,056 KB
testcase_20 AC 83 ms
79,104 KB
testcase_21 AC 153 ms
85,632 KB
testcase_22 AC 148 ms
85,376 KB
testcase_23 AC 146 ms
85,888 KB
testcase_24 AC 146 ms
86,144 KB
testcase_25 AC 37 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)
if n % 2 == 1 and m % 2 == 1:
    print(n * m - max(n, m))
    ans = [[1] * m for _ in range(n)]
    for i in range(min(n, m)):
        ans[i][i] = 0
    for i in range(min(n, m), n):
        ans[i][0] = 0
    for i in range(min(n, m), m):
        ans[0][i] = 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
else:
    print(x * y)
for row in ans:
    print(*row)
0