結果

問題 No.1398 調和の魔法陣 (構築)
ユーザー convexineqconvexineq
提出日時 2021-02-19 22:18:21
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 82 ms / 3,153 ms
コード長 1,008 bytes
コンパイル時間 310 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 79,232 KB
最終ジャッジ日時 2024-09-16 20:02:02
合計ジャッジ時間 28,799 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,224 KB
testcase_01 AC 39 ms
51,584 KB
testcase_02 AC 41 ms
51,968 KB
testcase_03 AC 40 ms
52,352 KB
testcase_04 AC 40 ms
52,224 KB
testcase_05 AC 41 ms
52,096 KB
testcase_06 AC 78 ms
78,592 KB
testcase_07 AC 42 ms
55,168 KB
testcase_08 AC 81 ms
78,720 KB
testcase_09 AC 74 ms
78,592 KB
testcase_10 AC 40 ms
55,168 KB
testcase_11 AC 66 ms
78,592 KB
testcase_12 AC 42 ms
54,784 KB
testcase_13 AC 69 ms
78,592 KB
testcase_14 AC 75 ms
78,592 KB
testcase_15 AC 39 ms
55,424 KB
testcase_16 AC 82 ms
78,720 KB
testcase_17 AC 80 ms
78,944 KB
testcase_18 AC 82 ms
78,720 KB
testcase_19 AC 80 ms
78,976 KB
testcase_20 AC 42 ms
55,040 KB
testcase_21 AC 68 ms
78,716 KB
testcase_22 AC 70 ms
78,976 KB
testcase_23 AC 41 ms
55,040 KB
testcase_24 AC 69 ms
78,688 KB
testcase_25 AC 40 ms
54,784 KB
testcase_26 AC 72 ms
78,720 KB
testcase_27 AC 73 ms
79,232 KB
testcase_28 AC 40 ms
55,040 KB
testcase_29 AC 67 ms
78,592 KB
testcase_30 AC 41 ms
55,552 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

d = {0:1,1:0,2:-1}
w,h,x = map(int,input().split())
ans = [[0]*w for _ in range(h)]
s = (2 if h%3==2 else 1)*(2 if w%3==2 else 1)
if s*9 < x:
    print(-1)
    exit()
a = x//s
if s==1:
    for i in range(h):
        if i%3 != d[h%3]: continue
        for j in range(w):
            if j%3 != d[w%3]: continue
            ans[i][j] = a
if s==2:
    V = x%2
    if h%3==2:
        for i in range(h):
            if i%3 == 2: continue
            for j in range(w):
                if j%3 != d[w%3]: continue
                ans[i][j] = a + (i%3==0)*V
    else:
        for i in range(h):
            if i%3 != d[h%3]: continue
            for j in range(w):
                if j%3 == 2: continue
                ans[i][j] = a + (j%3==0)*V

if s==4:
    d = {(0,0):0,(0,1):(x%4>=3),(1,0):(x%4>=2),(1,1):(x%4>=1)}
    for i in range(h):
        if i%3 == 2: continue
        for j in range(w):
            if j%3 == 2: continue
            ans[i][j] = a + d[i%3,j%3]

for i in ans:
    print("".join(map(str,i)))
0