結果

問題 No.1398 調和の魔法陣 (構築)
ユーザー 👑 tamatotamato
提出日時 2021-02-19 22:24:03
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 109 ms / 3,153 ms
コード長 3,571 bytes
コンパイル時間 474 ms
コンパイル使用メモリ 87,596 KB
実行使用メモリ 80,544 KB
最終ジャッジ日時 2023-10-15 02:56:14
合計ジャッジ時間 29,437 ms
ジャッジサーバーID
(参考情報)
judge15 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 74 ms
71,676 KB
testcase_01 AC 73 ms
71,864 KB
testcase_02 AC 73 ms
71,576 KB
testcase_03 AC 74 ms
71,792 KB
testcase_04 AC 75 ms
71,756 KB
testcase_05 AC 74 ms
71,636 KB
testcase_06 AC 100 ms
80,072 KB
testcase_07 AC 77 ms
71,812 KB
testcase_08 AC 105 ms
80,388 KB
testcase_09 AC 105 ms
80,224 KB
testcase_10 AC 79 ms
71,880 KB
testcase_11 AC 106 ms
80,292 KB
testcase_12 AC 76 ms
71,724 KB
testcase_13 AC 103 ms
80,544 KB
testcase_14 AC 102 ms
80,184 KB
testcase_15 AC 75 ms
71,900 KB
testcase_16 AC 106 ms
80,152 KB
testcase_17 AC 108 ms
80,344 KB
testcase_18 AC 109 ms
80,392 KB
testcase_19 AC 109 ms
80,448 KB
testcase_20 AC 77 ms
71,992 KB
testcase_21 AC 105 ms
80,176 KB
testcase_22 AC 104 ms
80,120 KB
testcase_23 AC 73 ms
71,736 KB
testcase_24 AC 100 ms
80,188 KB
testcase_25 AC 76 ms
71,964 KB
testcase_26 AC 103 ms
80,524 KB
testcase_27 AC 105 ms
80,328 KB
testcase_28 AC 78 ms
71,876 KB
testcase_29 AC 103 ms
80,388 KB
testcase_30 AC 76 ms
71,612 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

mod = 1000000007
eps = 10**-9


def main():
    import sys
    input = sys.stdin.readline

    W, H, X = map(int, input().split())

    if X == 0:
        for _ in range(H):
            print("0" * W)
        exit()

    if X > 36:
        print(-1)
        exit()
    
    a = min(X, 9)
    X -= a
    b = min(X, 9)
    X -= b
    c = min(X, 9)
    X -= c
    d = X
    ans = [[0] * W for _ in range(H)]
    if H%3 == 2 and W%3 == 2:
        for h in range(H):
            for w in range(W):
                if h%3 == 0 and w%3 == 0:
                    ans[h][w] = a
                elif h%3 == 0 and w%3 == 1:
                    ans[h][w] = b
                elif h%3 == 1 and w%3 == 0:
                    ans[h][w] = c
                elif h%3 == 1 and w%3 == 1:
                    ans[h][w] = d
        for h in range(H):
            print("".join(map(str, ans[h])))
    elif H%3 == 2 and W%3 == 1:
        if c:
            print(-1)
            exit()
        for h in range(H):
            for w in range(W):
                if h%3 == 0 and w%3 == 0:
                    ans[h][w] = a
                elif h%3 == 1 and w%3 == 0:
                    ans[h][w] = b
        for h in range(H):
            print("".join(map(str, ans[h])))
    elif H%3 == 1 and W%3 == 2:
        if c:
            print(-1)
            exit()
        for h in range(H):
            for w in range(W):
                if h%3 == 0 and w%3 == 0:
                    ans[h][w] = a
                elif h%3 == 0 and w%3 == 1:
                    ans[h][w] = b
        for h in range(H):
            print("".join(map(str, ans[h])))
    elif H%3 == 1 and W%3 == 1:
        if b:
            print(-1)
            exit()
        for h in range(H):
            for w in range(W):
                if h%3 == 0 and w%3 == 0:
                    ans[h][w] = a
        for h in range(H):
            print("".join(map(str, ans[h])))
    elif H%3 == 1 and W%3 == 0:
        if b:
            print(-1)
            exit()
        for h in range(H):
            for w in range(W):
                if h%3 == 0 and w%3 == 1:
                    ans[h][w] = a
        for h in range(H):
            print("".join(map(str, ans[h])))
    elif H%3 == 0 and W%3 == 1:
        if b:
            print(-1)
            exit()
        for h in range(H):
            for w in range(W):
                if h%3 == 1 and w%3 == 0:
                    ans[h][w] = a
        for h in range(H):
            print("".join(map(str, ans[h])))
    elif H%3 == 0 and W%3 == 0:
        if b:
            print(-1)
            exit()
        for h in range(H):
            for w in range(W):
                if h%3 == 1 and w%3 == 1:
                    ans[h][w] = a
        for h in range(H):
            print("".join(map(str, ans[h])))
    elif H%3 == 2 and W%3 == 0:
        if c:
            print(-1)
            exit()
        for h in range(H):
            for w in range(W):
                if h%3 == 0 and w%3 == 1:
                    ans[h][w] = a
                elif h%3 == 1 and w%3 == 1:
                    ans[h][w] = b
        for h in range(H):
            print("".join(map(str, ans[h])))
    elif H%3 == 0 and W%3 == 2:
        if c:
            print(-1)
            exit()
        for h in range(H):
            for w in range(W):
                if h%3 == 1 and w%3 == 0:
                    ans[h][w] = a
                elif h%3 == 1 and w%3 == 1:
                    ans[h][w] = b
        for h in range(H):
            print("".join(map(str, ans[h])))


if __name__ == '__main__':
    main()
0