結果

問題 No.1398 調和の魔法陣 (構築)
ユーザー vwxyzvwxyz
提出日時 2023-07-18 15:01:08
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 187 ms / 3,153 ms
コード長 1,126 bytes
コンパイル時間 176 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 96,416 KB
最終ジャッジ日時 2024-09-18 14:14:34
合計ジャッジ時間 29,201 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 133 ms
89,856 KB
testcase_01 AC 140 ms
89,856 KB
testcase_02 AC 130 ms
89,664 KB
testcase_03 AC 134 ms
89,592 KB
testcase_04 AC 133 ms
89,728 KB
testcase_05 AC 128 ms
89,620 KB
testcase_06 AC 174 ms
96,040 KB
testcase_07 AC 129 ms
89,472 KB
testcase_08 AC 187 ms
96,044 KB
testcase_09 AC 183 ms
95,992 KB
testcase_10 AC 130 ms
89,592 KB
testcase_11 AC 185 ms
96,416 KB
testcase_12 AC 139 ms
89,472 KB
testcase_13 AC 173 ms
96,032 KB
testcase_14 AC 181 ms
95,716 KB
testcase_15 AC 133 ms
89,600 KB
testcase_16 AC 171 ms
95,908 KB
testcase_17 AC 176 ms
95,736 KB
testcase_18 AC 172 ms
96,064 KB
testcase_19 AC 179 ms
96,140 KB
testcase_20 AC 133 ms
89,608 KB
testcase_21 AC 173 ms
95,920 KB
testcase_22 AC 172 ms
95,620 KB
testcase_23 AC 131 ms
89,728 KB
testcase_24 AC 182 ms
96,176 KB
testcase_25 AC 132 ms
89,676 KB
testcase_26 AC 184 ms
96,308 KB
testcase_27 AC 170 ms
96,332 KB
testcase_28 AC 128 ms
89,728 KB
testcase_29 AC 174 ms
96,064 KB
testcase_30 AC 132 ms
89,600 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import bisect
import copy
import decimal
import fractions
import heapq
import itertools
import math
import random
import sys
import time
from collections import Counter,deque,defaultdict
from functools import lru_cache,reduce
from heapq import heappush,heappop,heapify,heappushpop,_heappop_max,_heapify_max
def _heappush_max(heap,item):
    heap.append(item)
    heapq._siftdown_max(heap, 0, len(heap)-1)
def _heappushpop_max(heap, item):
    if heap and item < heap[0]:
        item, heap[0] = heap[0], item
        heapq._siftup_max(heap, 0)
    return item
from math import gcd as GCD
read=sys.stdin.read
readline=sys.stdin.readline
readlines=sys.stdin.readlines
write=sys.stdout.write

W,H,X=map(int,readline().split())
lst=[[1]*3 for i in range(3)]
for h in range(3):
    for w in range(3):
        if h==2 or w==2 or h==H%3 or w==W%3:
            lst[h][w]=0
for h in range(3):
    for w in range(3):
        if lst[h][w]:
            lst[h][w]=min(X,9)
            X-=lst[h][w]
if X:
    print(-1)
    exit()
ans_lst=[[lst[h%3][w%3] for w in range(W)] for h in range(H)]
for h in range(H):
    print(*ans_lst[h],sep="")
0