結果

問題 No.1974 2x2 Flipper
ユーザー tassei903tassei903
提出日時 2022-03-24 23:37:47
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 148 ms / 2,000 ms
コード長 733 bytes
コンパイル時間 195 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 86,144 KB
最終ジャッジ日時 2024-09-21 07:04:33
合計ジャッジ時間 4,926 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
51,968 KB
testcase_01 AC 68 ms
77,184 KB
testcase_02 AC 51 ms
63,360 KB
testcase_03 AC 114 ms
81,920 KB
testcase_04 AC 83 ms
79,012 KB
testcase_05 AC 73 ms
77,756 KB
testcase_06 AC 100 ms
80,256 KB
testcase_07 AC 88 ms
79,232 KB
testcase_08 AC 58 ms
74,368 KB
testcase_09 AC 101 ms
80,640 KB
testcase_10 AC 58 ms
74,368 KB
testcase_11 AC 94 ms
79,616 KB
testcase_12 AC 111 ms
81,920 KB
testcase_13 AC 95 ms
79,700 KB
testcase_14 AC 79 ms
78,112 KB
testcase_15 AC 123 ms
82,560 KB
testcase_16 AC 63 ms
76,032 KB
testcase_17 AC 111 ms
80,920 KB
testcase_18 AC 56 ms
73,344 KB
testcase_19 AC 66 ms
76,544 KB
testcase_20 AC 83 ms
78,080 KB
testcase_21 AC 148 ms
85,248 KB
testcase_22 AC 140 ms
85,760 KB
testcase_23 AC 147 ms
85,968 KB
testcase_24 AC 141 ms
86,144 KB
testcase_25 AC 37 ms
52,608 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = lambda :sys.stdin.readline()[:-1]
ni = lambda :int(input())
na = lambda :list(map(int,input().split()))
yes = lambda :print("yes");Yes = lambda :print("Yes");YES = lambda : print("YES")
no = lambda :print("no");No = lambda :print("No");NO = lambda : print("NO")
#######################################################################

h,w = na()
a = [[1 for j in range(w)]for i in range(h)]
ans = h*w
if h%2 and w%2:
    for i in range(max(h,w)):
        x = min(i, h-1)
        y = min(i, w-1)
        a[x][y] = 0
        ans -= 1
elif h%2:
    for i in range(w):
        a[0][i] = 0
        ans -= 1
elif w%2:
    for i in range(h):
        a[i][0] = 0
        ans -= 1
print(ans)
for i in a:
    print(*i)
    
0