結果

問題 No.1974 2x2 Flipper
ユーザー hir355hir355
提出日時 2022-06-10 22:24:14
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 329 bytes
コンパイル時間 156 ms
コンパイル使用メモリ 82,376 KB
実行使用メモリ 86,364 KB
最終ジャッジ日時 2024-09-21 06:31:59
合計ジャッジ時間 5,355 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
53,416 KB
testcase_01 AC 66 ms
76,576 KB
testcase_02 AC 49 ms
63,964 KB
testcase_03 AC 108 ms
82,360 KB
testcase_04 AC 78 ms
78,600 KB
testcase_05 WA -
testcase_06 AC 90 ms
80,360 KB
testcase_07 AC 79 ms
79,040 KB
testcase_08 AC 57 ms
74,808 KB
testcase_09 AC 94 ms
80,964 KB
testcase_10 WA -
testcase_11 AC 83 ms
79,400 KB
testcase_12 AC 102 ms
82,080 KB
testcase_13 AC 90 ms
79,820 KB
testcase_14 AC 72 ms
78,024 KB
testcase_15 AC 114 ms
83,444 KB
testcase_16 WA -
testcase_17 AC 99 ms
81,576 KB
testcase_18 AC 50 ms
73,468 KB
testcase_19 AC 62 ms
76,516 KB
testcase_20 AC 75 ms
78,564 KB
testcase_21 AC 136 ms
86,224 KB
testcase_22 AC 139 ms
86,036 KB
testcase_23 AC 134 ms
85,900 KB
testcase_24 WA -
testcase_25 AC 35 ms
52,288 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, m = map(int, input().split())
if n == 1 or m == 1:
    ans = [[0] * m for _ in range(n)]
    print(0)
    for row in ans:
        print(*row)
    exit(0)
x = n // 2 * 2
y = m // 2 * 2
print(x * y)
ans = [[0] * m for _ in range(n)]
for i in range(x):
    for j in range(y):
        ans[i][j] = 1
for row in ans:
    print(*row)
0