結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,352 KB
testcase_01 AC 70 ms
77,028 KB
testcase_02 AC 57 ms
64,128 KB
testcase_03 AC 127 ms
82,648 KB
testcase_04 AC 86 ms
79,312 KB
testcase_05 WA -
testcase_06 AC 106 ms
80,256 KB
testcase_07 AC 92 ms
79,080 KB
testcase_08 AC 65 ms
76,928 KB
testcase_09 AC 106 ms
80,768 KB
testcase_10 WA -
testcase_11 AC 94 ms
79,872 KB
testcase_12 AC 123 ms
82,304 KB
testcase_13 AC 102 ms
79,772 KB
testcase_14 AC 81 ms
78,352 KB
testcase_15 AC 130 ms
83,712 KB
testcase_16 WA -
testcase_17 AC 115 ms
81,280 KB
testcase_18 AC 58 ms
73,856 KB
testcase_19 AC 73 ms
76,928 KB
testcase_20 AC 86 ms
78,592 KB
testcase_21 AC 158 ms
86,044 KB
testcase_22 AC 158 ms
86,016 KB
testcase_23 AC 163 ms
86,272 KB
testcase_24 WA -
testcase_25 AC 40 ms
52,452 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
    
    ans[-1][-1] = 1
    ans[-1][-2] = 1
    ans[-2][-1] = 1
    ans[-2][-2] = 0
    
    print((h-1)*(w-1) + 2)
    print_ans()
0