結果

問題 No.1974 2x2 Flipper
ユーザー pitPpitP
提出日時 2022-06-10 22:40:02
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 736 bytes
コンパイル時間 614 ms
コンパイル使用メモリ 82,640 KB
実行使用メモリ 86,212 KB
最終ジャッジ日時 2024-09-21 06:37:21
合計ジャッジ時間 6,341 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
53,724 KB
testcase_01 AC 70 ms
77,136 KB
testcase_02 AC 51 ms
64,364 KB
testcase_03 AC 125 ms
82,348 KB
testcase_04 AC 88 ms
79,044 KB
testcase_05 WA -
testcase_06 AC 105 ms
80,564 KB
testcase_07 AC 91 ms
78,876 KB
testcase_08 AC 62 ms
76,944 KB
testcase_09 AC 107 ms
81,000 KB
testcase_10 WA -
testcase_11 AC 93 ms
80,120 KB
testcase_12 AC 121 ms
82,760 KB
testcase_13 AC 97 ms
80,244 KB
testcase_14 AC 82 ms
78,648 KB
testcase_15 AC 133 ms
83,304 KB
testcase_16 WA -
testcase_17 AC 113 ms
81,104 KB
testcase_18 AC 56 ms
74,140 KB
testcase_19 AC 67 ms
77,024 KB
testcase_20 AC 87 ms
78,820 KB
testcase_21 AC 159 ms
86,212 KB
testcase_22 AC 158 ms
86,180 KB
testcase_23 AC 161 ms
86,108 KB
testcase_24 WA -
testcase_25 AC 38 ms
53,408 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def print_ans(): 
    for l in ans:
        print(*l)
    return

h,w = map(int,input().split())
ans = [[0 for _ in range(w)] for _ in range(h)]
if h == 1 or w == 1:
    print(0)
    print_ans()
elif h%2 == 0 and w%2 == 0:
    for i in range(h):
        for j in range(w):
            ans[i][j] = 1
    print(h*w)
    print_ans()
elif h%2 == 0 and w%2 == 1:
    for i in range(h):
        for j in range(w-1):
            ans[i][j] = 1
    print(h*(w-1))
    print_ans()
elif h%2 == 1 and w%2 == 0:
    for i in range(h-1):
        for j in range(w):
            ans[i][j] = 1
    print((h-1)*w)
    print_ans()
else:
    for i in range(h-1):
        for j in range(w-1):
            ans[i][j] = 1
    print((h-1)*(w-1))
    print_ans()
0