結果

問題 No.1974 2x2 Flipper
ユーザー ニックネームニックネーム
提出日時 2022-06-10 22:49:06
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 540 ms / 2,000 ms
コード長 379 bytes
コンパイル時間 242 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 18,944 KB
最終ジャッジ日時 2024-09-21 07:09:33
合計ジャッジ時間 8,711 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,880 KB
testcase_01 AC 84 ms
11,648 KB
testcase_02 AC 34 ms
10,880 KB
testcase_03 AC 364 ms
16,128 KB
testcase_04 AC 182 ms
13,312 KB
testcase_05 AC 118 ms
12,160 KB
testcase_06 AC 265 ms
14,464 KB
testcase_07 AC 180 ms
13,312 KB
testcase_08 AC 58 ms
11,392 KB
testcase_09 AC 281 ms
14,720 KB
testcase_10 AC 57 ms
11,264 KB
testcase_11 AC 219 ms
13,824 KB
testcase_12 AC 366 ms
16,000 KB
testcase_13 AC 231 ms
14,080 KB
testcase_14 AC 150 ms
12,800 KB
testcase_15 AC 425 ms
17,024 KB
testcase_16 AC 61 ms
11,264 KB
testcase_17 AC 304 ms
15,104 KB
testcase_18 AC 60 ms
11,392 KB
testcase_19 AC 62 ms
11,520 KB
testcase_20 AC 177 ms
13,312 KB
testcase_21 AC 540 ms
18,944 KB
testcase_22 AC 532 ms
18,816 KB
testcase_23 AC 539 ms
18,816 KB
testcase_24 AC 533 ms
18,688 KB
testcase_25 AC 30 ms
10,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

h, w = map(int, input().split())
a = [[1]*w for _ in range(h)]
if h*w%2:
    ans = h*w-max(h, w)
    for i in range(h): a[i][min(max(h, w)-i, w)-1] = 0
    for j in range(w): a[min(max(h, w)-j, h)-1][j] = 0
else:
    ans = (h//2*2)*(w//2*2)
    if w%2:
        for i in range(h): a[i][w-1] = 0
    if h%2:
        for j in range(w): a[h-1][j] = 0
print(ans)
for s in a: print(*s)
0