結果

問題 No.1398 調和の魔法陣 (構築)
ユーザー ytoki28ytoki28
提出日時 2021-02-19 23:18:38
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 693 ms / 3,153 ms
コード長 1,144 bytes
コンパイル時間 82 ms
コンパイル使用メモリ 12,928 KB
実行使用メモリ 46,992 KB
最終ジャッジ日時 2024-09-16 22:52:13
合計ジャッジ時間 39,682 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 445 ms
43,920 KB
testcase_01 AC 440 ms
44,308 KB
testcase_02 AC 455 ms
44,180 KB
testcase_03 AC 439 ms
44,440 KB
testcase_04 AC 447 ms
44,568 KB
testcase_05 AC 450 ms
44,312 KB
testcase_06 AC 560 ms
46,104 KB
testcase_07 AC 440 ms
44,188 KB
testcase_08 AC 539 ms
46,456 KB
testcase_09 AC 547 ms
46,764 KB
testcase_10 AC 454 ms
44,052 KB
testcase_11 AC 548 ms
46,496 KB
testcase_12 AC 445 ms
44,052 KB
testcase_13 AC 541 ms
46,352 KB
testcase_14 AC 556 ms
45,596 KB
testcase_15 AC 457 ms
44,436 KB
testcase_16 AC 542 ms
45,332 KB
testcase_17 AC 547 ms
45,852 KB
testcase_18 AC 550 ms
46,616 KB
testcase_19 AC 560 ms
46,992 KB
testcase_20 AC 449 ms
44,056 KB
testcase_21 AC 547 ms
45,596 KB
testcase_22 AC 693 ms
45,588 KB
testcase_23 AC 446 ms
44,576 KB
testcase_24 AC 546 ms
46,540 KB
testcase_25 AC 446 ms
44,052 KB
testcase_26 AC 554 ms
45,976 KB
testcase_27 AC 547 ms
46,488 KB
testcase_28 AC 448 ms
44,312 KB
testcase_29 AC 551 ms
45,464 KB
testcase_30 AC 479 ms
44,696 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
import numpy as np

readline = sys.stdin.readline
read = sys.stdin.read

w, h, x = map(int, readline().split())
if x <= 9:
    ans = np.zeros((h,w), dtype=np.int64)
    f = [1,0,0]
    ans[f[h%3]::3,f[w%3]::3] = x
    for l in ans:
        print(''.join(map(str, l)))
    sys.exit()
if x <= 18:
    if w % 3 == 2:
        ans = np.zeros((h,w), dtype=np.int64)
        f = [1,0,0]
        ans[f[h%3]::3,::3] = 9
        ans[f[h%3]::3,1::3] = x - 9
        for l in ans:
            print(''.join(map(str, l)))
        sys.exit()
    if h % 3 == 2:
        ans = np.zeros((h,w), dtype=np.int64)
        f = [1,0,0]
        ans[::3,f[w%3]::3] = 9
        ans[1::3,f[w%3]::3] = x - 9
        for l in ans:
            print(''.join(map(str, l)))
        sys.exit()
if x <= 36 and h % 3 == 2 and w % 3 == 2:
    ans = np.zeros((h,w), dtype=np.int64)
    if x <= 27:
        a = np.array([[9,9,0],[x-18,0,0],[0,0,0]], dtype=np.int64)
    else:
        a = np.array([[9,9,0],[9,x-27,0],[0,0,0]], dtype=np.int64)
    ans = np.tile(a,((h+1)//3,(w+1)//3))[:-1,:-1]
    for l in ans:
        print(''.join(map(str, l)))
    sys.exit()
print(-1)
0