結果

問題 No.1974 2x2 Flipper
ユーザー titiatitia
提出日時 2022-06-12 01:55:16
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 534 ms / 2,000 ms
コード長 642 bytes
コンパイル時間 157 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 19,072 KB
最終ジャッジ日時 2024-09-22 12:10:27
合計ジャッジ時間 9,354 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 28 ms
10,752 KB
testcase_01 AC 84 ms
11,776 KB
testcase_02 AC 35 ms
11,008 KB
testcase_03 AC 365 ms
16,128 KB
testcase_04 AC 177 ms
13,312 KB
testcase_05 AC 118 ms
12,416 KB
testcase_06 AC 265 ms
14,592 KB
testcase_07 AC 178 ms
13,440 KB
testcase_08 AC 56 ms
11,392 KB
testcase_09 AC 280 ms
14,848 KB
testcase_10 AC 56 ms
11,264 KB
testcase_11 AC 218 ms
13,952 KB
testcase_12 AC 361 ms
16,256 KB
testcase_13 AC 227 ms
13,952 KB
testcase_14 AC 147 ms
12,928 KB
testcase_15 AC 415 ms
17,152 KB
testcase_16 AC 58 ms
11,392 KB
testcase_17 AC 299 ms
15,232 KB
testcase_18 AC 56 ms
11,392 KB
testcase_19 AC 60 ms
11,520 KB
testcase_20 AC 174 ms
13,312 KB
testcase_21 AC 534 ms
18,816 KB
testcase_22 AC 530 ms
18,816 KB
testcase_23 AC 533 ms
18,816 KB
testcase_24 AC 529 ms
19,072 KB
testcase_25 AC 29 ms
10,624 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

H,W=map(int,input().split())

ANS=[[1]*W for i in range(H)]

if H%2==0 and W%2==0:
    print(H*W)
    for ans in ANS:
        print(*ans)

elif H%2==1 and W%2==0:
    print(H*W-W)
    for i in range(W):
        ANS[0][i]=0

    for ans in ANS:
        print(*ans)
elif H%2==0 and W%2==1:
    print(H*W-H)
    for i in range(H):
        ANS[i][0]=0

    for ans in ANS:
        print(*ans)
else:
    if H<=W:
        for i in range(W):
            ANS[min(i,H-1)][i]=0
        print(H*W-W)
    else:
        for i in range(H):
            ANS[i][min(i,W-1)]=0
        print(H*W-H)
        
    for ans in ANS:
        print(*ans)
            
0