結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,752 KB
testcase_01 AC 121 ms
11,648 KB
testcase_02 AC 38 ms
10,880 KB
testcase_03 AC 625 ms
16,000 KB
testcase_04 AC 289 ms
13,184 KB
testcase_05 WA -
testcase_06 AC 458 ms
14,464 KB
testcase_07 AC 289 ms
13,184 KB
testcase_08 AC 77 ms
11,264 KB
testcase_09 AC 470 ms
14,848 KB
testcase_10 WA -
testcase_11 AC 358 ms
13,824 KB
testcase_12 AC 623 ms
16,000 KB
testcase_13 AC 375 ms
13,952 KB
testcase_14 AC 239 ms
12,672 KB
testcase_15 AC 722 ms
17,024 KB
testcase_16 WA -
testcase_17 AC 523 ms
15,104 KB
testcase_18 AC 82 ms
11,392 KB
testcase_19 AC 83 ms
11,520 KB
testcase_20 AC 283 ms
13,184 KB
testcase_21 AC 937 ms
18,816 KB
testcase_22 AC 944 ms
18,816 KB
testcase_23 AC 932 ms
18,944 KB
testcase_24 WA -
testcase_25 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

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