結果

問題 No.1974 2x2 Flipper
ユーザー vwxyzvwxyz
提出日時 2023-07-15 13:51:10
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
RE  
実行時間 -
コード長 570 bytes
コンパイル時間 196 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 19,584 KB
最終ジャッジ日時 2024-09-16 22:40:11
合計ジャッジ時間 10,582 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,624 KB
testcase_01 AC 93 ms
11,520 KB
testcase_02 AC 35 ms
10,880 KB
testcase_03 AC 425 ms
16,128 KB
testcase_04 AC 226 ms
13,440 KB
testcase_05 RE -
testcase_06 AC 305 ms
14,464 KB
testcase_07 AC 224 ms
13,312 KB
testcase_08 AC 63 ms
11,136 KB
testcase_09 AC 360 ms
14,848 KB
testcase_10 RE -
testcase_11 AC 284 ms
14,080 KB
testcase_12 AC 479 ms
16,640 KB
testcase_13 AC 294 ms
14,080 KB
testcase_14 AC 187 ms
12,800 KB
testcase_15 AC 544 ms
17,024 KB
testcase_16 RE -
testcase_17 AC 344 ms
15,104 KB
testcase_18 AC 68 ms
11,392 KB
testcase_19 AC 71 ms
11,392 KB
testcase_20 AC 223 ms
13,184 KB
testcase_21 AC 626 ms
18,816 KB
testcase_22 AC 712 ms
19,456 KB
testcase_23 AC 716 ms
19,584 KB
testcase_24 AC 616 ms
18,816 KB
testcase_25 AC 30 ms
10,624 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
readline=sys.stdin.readline

H,W=map(int,readline().split())
if 1 in (H,W):
    ans_lst=[[0]*W for h in range(H)]
elif H%2==0 and W%2==0:
    ans_lst=[[1]*W for h in range(H)]
elif H%2==0:
    ans_lst=[[1 if w!=W-1 else 0 for w in range(W)] for h in range(H)]
elif W%2==0:
    ans_lst=[[1 if h!=H-1 else 0 for w in range(W)] for h in range(H)]
else:
    ans_lst=[[1]*W for h in range(H)]
    for i in range(max(H,W)):
        ans_lst[min(i,H)][min(i,W)]=0
print(sum(ans_lst[h][w] for h in range(H) for w in range(W)))
for h in range(H):
    print(*ans_lst[h])
0