結果

問題 No.1974 2x2 Flipper
ユーザー taiga0629kyoprotaiga0629kyopro
提出日時 2022-06-12 10:56:53
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 156 ms / 2,000 ms
コード長 702 bytes
コンパイル時間 198 ms
コンパイル使用メモリ 82,292 KB
実行使用メモリ 86,656 KB
最終ジャッジ日時 2024-09-22 21:24:27
合計ジャッジ時間 5,562 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
53,500 KB
testcase_01 AC 67 ms
77,368 KB
testcase_02 AC 49 ms
63,128 KB
testcase_03 AC 119 ms
82,608 KB
testcase_04 AC 85 ms
78,724 KB
testcase_05 AC 72 ms
77,692 KB
testcase_06 AC 101 ms
80,512 KB
testcase_07 AC 89 ms
79,480 KB
testcase_08 AC 59 ms
74,600 KB
testcase_09 AC 103 ms
80,896 KB
testcase_10 AC 59 ms
74,340 KB
testcase_11 AC 92 ms
79,744 KB
testcase_12 AC 120 ms
83,072 KB
testcase_13 AC 97 ms
79,744 KB
testcase_14 AC 79 ms
78,016 KB
testcase_15 AC 132 ms
83,880 KB
testcase_16 AC 62 ms
76,800 KB
testcase_17 AC 112 ms
81,152 KB
testcase_18 AC 54 ms
73,984 KB
testcase_19 AC 63 ms
77,056 KB
testcase_20 AC 86 ms
78,976 KB
testcase_21 AC 156 ms
86,656 KB
testcase_22 AC 153 ms
85,912 KB
testcase_23 AC 153 ms
85,916 KB
testcase_24 AC 153 ms
85,996 KB
testcase_25 AC 38 ms
51,968 KB
権限があれば一括ダウンロードができます

ソースコード

diff #


h,w=map(int,input().split())
s=[[1]*w for i in range(h)]
def put(s):
    for l in s:print(*l)
def cnt(s):
    res=0
    for i in range(h):
        for j in range(w):res+=s[i][j]
    print(res)
if h%2==w%2==0:
    cnt(s)
    put(s)
elif h%2==0 and w%2==1:
    for i in range(h):s[i][0]=0
    cnt(s)
    put(s)
elif h%2==1 and w%2==0:
    for j in range(w):s[0][j]=0
    cnt(s)
    put(s)
else:
    if h<w:
        for j in range(w-h):
            s[0][j]=0
        for j in range(w-h,w):
            s[(j-w+h)%h][j]=0
        cnt(s)
        put(s)
    else:
        for i in range(h-w):
            s[i][0]=0
        for i in range(h-w,h):
            s[i][(i-h+w)%w]=0
        cnt(s)
        put(s)

0