結果
問題 | No.1398 調和の魔法陣 (構築) |
ユーザー | aaaaaaaaaa2230 |
提出日時 | 2021-02-19 22:23:40 |
言語 | PyPy3 (7.3.15) |
結果 |
RE
|
実行時間 | - |
コード長 | 1,208 bytes |
コンパイル時間 | 230 ms |
コンパイル使用メモリ | 82,256 KB |
実行使用メモリ | 79,996 KB |
最終ジャッジ日時 | 2024-09-16 20:26:21 |
合計ジャッジ時間 | 27,501 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 43 ms
52,564 KB |
testcase_01 | AC | 42 ms
52,096 KB |
testcase_02 | AC | 38 ms
52,352 KB |
testcase_03 | RE | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | AC | 38 ms
52,608 KB |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | AC | 39 ms
51,584 KB |
testcase_11 | WA | - |
testcase_12 | AC | 39 ms
52,128 KB |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | AC | 37 ms
51,968 KB |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | AC | 89 ms
79,996 KB |
testcase_19 | WA | - |
testcase_20 | AC | 39 ms
51,840 KB |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | AC | 39 ms
52,224 KB |
testcase_24 | WA | - |
testcase_25 | AC | 38 ms
51,840 KB |
testcase_26 | WA | - |
testcase_27 | WA | - |
testcase_28 | AC | 40 ms
52,096 KB |
testcase_29 | WA | - |
testcase_30 | AC | 39 ms
52,096 KB |
ソースコード
w,h,x = map(int,input().split()) def ans(w,h,x): if x > 36: return -1 if w == h == 1: if x > 10: return -1 return [x] if w == 1: if x > 18 or x%2 : return -1 if h%3 != 2: return -1 l = [[x//2] for i in range(h)] for i in range(2,h,3): l[i][0] = 0 return l if h == 1: if x > 18 or x%2 : return -1 if w%3 != 2: return -1 l = [[x//2]*w] for i in range(2,w,3): l[0][i] = 0 return l if h == w == 2: if x > 36: return -1 l = [[0,0],[0,0]] for i in range(2): for j in range(2): a = min(9,x) l[i][j] = a x -= a return l if h%3 != 2 or w%3 != 2: return -1 if x > 36 or x%4: return -1 l = [] base = [x//4]*w for i in range(2,w,3): base[i] = 0 for i in range(h): if i%3 == 2: l.append([0]*w) else: l.append(base) return l a = ans(w,h,x) if a == -1: print(a) exit() for i in a: print(*i,sep="")