結果

問題 No.1974 2x2 Flipper
ユーザー aaaaaaaaaa2230aaaaaaaaaa2230
提出日時 2022-06-10 23:17:19
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 558 bytes
コンパイル時間 163 ms
コンパイル使用メモリ 82,288 KB
実行使用メモリ 86,424 KB
最終ジャッジ日時 2024-09-21 06:50:35
合計ジャッジ時間 5,784 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,480 KB
testcase_01 AC 92 ms
77,144 KB
testcase_02 AC 54 ms
64,512 KB
testcase_03 AC 127 ms
82,444 KB
testcase_04 AC 93 ms
78,780 KB
testcase_05 WA -
testcase_06 AC 106 ms
80,896 KB
testcase_07 AC 99 ms
78,976 KB
testcase_08 AC 66 ms
76,416 KB
testcase_09 AC 110 ms
81,152 KB
testcase_10 WA -
testcase_11 AC 99 ms
79,480 KB
testcase_12 AC 130 ms
82,252 KB
testcase_13 AC 106 ms
79,664 KB
testcase_14 AC 86 ms
77,952 KB
testcase_15 AC 145 ms
83,640 KB
testcase_16 WA -
testcase_17 AC 119 ms
81,280 KB
testcase_18 AC 63 ms
76,672 KB
testcase_19 AC 71 ms
76,800 KB
testcase_20 AC 89 ms
78,720 KB
testcase_21 AC 168 ms
85,888 KB
testcase_22 AC 157 ms
86,364 KB
testcase_23 AC 165 ms
86,352 KB
testcase_24 WA -
testcase_25 AC 38 ms
52,480 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

h,w = map(int,input().split())

ans = [[0]*w for i in range(h)]

if h == 1 or w == 1:
    print(0)
    for i in ans:
        print(*i)
    exit()


for i in range(0,h,2):
    for j in range(0,w,2):
        if i+1 < h and j+1 < w:
            ans[i][j] = ans[i+1][j] = ans[i][j+1] = ans[i+1][j+1] = 1

num = 0
for i in range(2):
    for j in range(2):
        num += ans[-1-i][-1-j]

if num == 1:
    for i in range(2):
        for j in range(2):
            ans[-1-i][-1-j] ^= 1

num = 0
for i in ans:
    num += sum(i)
print(num)
for i in ans:
    print(*i)
0