結果

問題 No.1398 調和の魔法陣 (構築)
ユーザー 👑 KazunKazun
提出日時 2021-02-19 21:28:43
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 576 bytes
コンパイル時間 1,196 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 65,152 KB
最終ジャッジ日時 2024-09-16 17:23:49
合計ジャッジ時間 27,314 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
51,456 KB
testcase_01 AC 40 ms
51,712 KB
testcase_02 AC 39 ms
51,840 KB
testcase_03 AC 39 ms
51,840 KB
testcase_04 AC 38 ms
51,840 KB
testcase_05 WA -
testcase_06 RE -
testcase_07 RE -
testcase_08 RE -
testcase_09 RE -
testcase_10 RE -
testcase_11 RE -
testcase_12 RE -
testcase_13 RE -
testcase_14 RE -
testcase_15 RE -
testcase_16 RE -
testcase_17 RE -
testcase_18 RE -
testcase_19 RE -
testcase_20 AC 39 ms
51,840 KB
testcase_21 RE -
testcase_22 RE -
testcase_23 RE -
testcase_24 RE -
testcase_25 RE -
testcase_26 RE -
testcase_27 RE -
testcase_28 RE -
testcase_29 RE -
testcase_30 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

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

if H==W==1:
    print(X if X<=9 else -1)
    exit()
elif H==1 and W==2:
    if X<=18:
        p=min(9,X)
        q=X-p
        print(p,q)
    else:
        print(-1)
    exit()
elif H==2 and W==1:
    if X<=18:
        p=min(9,X)
        q=X-p
        print(p,q,sep="\n")
    else:
        print(-1)
    exit()

if X>36:
    print(-1)
    exit()

P=[0]*4
Y=X
for i in range(4):
    a=min(Y,9)
    P[i]=a
    Y-=a

Q=[[P[0],P[1],0],[P[2],P[3],0],[0,0,0]]
R=[("{}{}{}".format(x[0],x[1],x[2]))*W for x in Q]

for i in range(H):
    print(R[i][:W])
0