結果

問題 No.1384 Bishop and Rook
ユーザー MitarushiMitarushi
提出日時 2021-01-08 14:24:56
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 435 ms / 2,000 ms
コード長 889 bytes
コンパイル時間 303 ms
コンパイル使用メモリ 82,688 KB
実行使用メモリ 83,780 KB
最終ジャッジ日時 2024-07-03 23:22:05
合計ジャッジ時間 13,936 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
51,712 KB
testcase_01 AC 311 ms
80,692 KB
testcase_02 AC 220 ms
78,924 KB
testcase_03 AC 170 ms
78,292 KB
testcase_04 AC 174 ms
77,808 KB
testcase_05 AC 250 ms
79,948 KB
testcase_06 AC 296 ms
80,980 KB
testcase_07 AC 309 ms
82,252 KB
testcase_08 AC 287 ms
80,044 KB
testcase_09 AC 109 ms
76,800 KB
testcase_10 AC 228 ms
79,492 KB
testcase_11 AC 107 ms
77,184 KB
testcase_12 AC 116 ms
76,800 KB
testcase_13 AC 107 ms
76,800 KB
testcase_14 AC 383 ms
83,152 KB
testcase_15 AC 110 ms
77,184 KB
testcase_16 AC 415 ms
83,780 KB
testcase_17 AC 110 ms
76,928 KB
testcase_18 AC 113 ms
77,184 KB
testcase_19 AC 370 ms
82,764 KB
testcase_20 AC 105 ms
76,800 KB
testcase_21 AC 116 ms
77,184 KB
testcase_22 AC 114 ms
77,184 KB
testcase_23 AC 120 ms
76,800 KB
testcase_24 AC 119 ms
76,800 KB
testcase_25 AC 117 ms
76,928 KB
testcase_26 AC 118 ms
76,928 KB
testcase_27 AC 114 ms
76,800 KB
testcase_28 AC 113 ms
76,928 KB
testcase_29 AC 117 ms
77,056 KB
testcase_30 AC 117 ms
76,928 KB
testcase_31 AC 116 ms
77,440 KB
testcase_32 AC 116 ms
77,184 KB
testcase_33 AC 112 ms
76,928 KB
testcase_34 AC 122 ms
77,184 KB
testcase_35 AC 116 ms
76,800 KB
testcase_36 AC 117 ms
77,056 KB
testcase_37 AC 113 ms
77,312 KB
testcase_38 AC 116 ms
77,440 KB
testcase_39 AC 103 ms
76,800 KB
testcase_40 AC 114 ms
76,672 KB
testcase_41 AC 142 ms
76,928 KB
testcase_42 AC 141 ms
76,844 KB
testcase_43 AC 151 ms
77,240 KB
testcase_44 AC 158 ms
77,716 KB
testcase_45 AC 161 ms
77,740 KB
testcase_46 AC 151 ms
77,368 KB
testcase_47 AC 152 ms
77,620 KB
testcase_48 AC 146 ms
77,080 KB
testcase_49 AC 131 ms
76,928 KB
testcase_50 AC 131 ms
77,312 KB
testcase_51 AC 69 ms
66,688 KB
testcase_52 AC 435 ms
83,532 KB
testcase_53 AC 296 ms
80,904 KB
testcase_54 AC 74 ms
70,016 KB
testcase_55 AC 60 ms
63,360 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

for _ in range(int(input())):
    n, m = map(int, input().split())
    if n == 1 and m == 1:
        print("0\n1 1")
        continue
    if n % 2 == 1 or m % 2 == 1:
        print(-1)
        continue
    print(n*m - 1)
    for i in range(0, n, 2):
        t = range(0, m, 2)
        for j in (t if i % 4 == 0 else reversed(t)):
            if i % 4 == 0:
                if j == 0:
                    print(i+1, j+2)
                    print(i+2, j+1)
                else:
                    print(i+2, j+1)
                    print(i+1, j+2)
                print(i+1, j+1)
                print(i+2, j+2)
            else:
                print(i+1, j+2)
                print(i+2, j+1)
                if j == 0:
                    print(i+1, j+1)
                    print(i+2, j+2)
                else:
                    print(i+2, j+2)
                    print(i+1, j+1)
0