結果
問題 | No.1398 調和の魔法陣 (構築) |
ユーザー | kozy |
提出日時 | 2021-02-19 21:59:48 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 2,253 bytes |
コンパイル時間 | 333 ms |
コンパイル使用メモリ | 13,312 KB |
実行使用メモリ | 28,800 KB |
最終ジャッジ日時 | 2024-09-16 19:01:49 |
合計ジャッジ時間 | 32,297 ms |
ジャッジサーバーID (参考情報) |
judge6 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 31 ms
11,264 KB |
testcase_01 | AC | 31 ms
11,136 KB |
testcase_02 | AC | 31 ms
11,136 KB |
testcase_03 | AC | 31 ms
11,264 KB |
testcase_04 | AC | 31 ms
11,264 KB |
testcase_05 | AC | 31 ms
11,264 KB |
testcase_06 | AC | 237 ms
20,992 KB |
testcase_07 | WA | - |
testcase_08 | AC | 256 ms
24,832 KB |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | AC | 236 ms
21,120 KB |
testcase_12 | WA | - |
testcase_13 | AC | 195 ms
23,040 KB |
testcase_14 | AC | 196 ms
22,912 KB |
testcase_15 | WA | - |
testcase_16 | AC | 212 ms
28,544 KB |
testcase_17 | AC | 208 ms
28,544 KB |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | AC | 192 ms
22,912 KB |
testcase_22 | AC | 194 ms
22,912 KB |
testcase_23 | WA | - |
testcase_24 | AC | 241 ms
20,992 KB |
testcase_25 | WA | - |
testcase_26 | AC | 249 ms
24,704 KB |
testcase_27 | WA | - |
testcase_28 | WA | - |
testcase_29 | AC | 266 ms
21,120 KB |
testcase_30 | WA | - |
ソースコード
W,H,X=map(int,input().split()) L=[[0 for i in range(W)] for j in range(H)] if H<=2 and W<=2: if 9*H*W<X: print(-1) exit() else: for i in range(H): for j in range(W): if X<=9: L[i][j]=X X=0 break else: L[i][j]=9 X-=9 for i in range(H): A=[str(i) for i in L[i]] print("".join(A)) exit() if H==1: if X>18: print(-1) exit() if X<=9: if W%3==0: print(("0"+str(X)+"0")*(X//3)) exit() else: L=str() for i in range(W): if i%3==0: L+=str(X) else: L+="0" print(L) exit() else: if W%3!=2: print(-1) exit() else: S=str() for i in range(W): if i%3==0: S+="9" elif i%3==1: S+=str(X-9) else: S+="0" print(S) exit() exit() if W==1: H,W=W,H if X>18: print(-1) exit() if X<=9: if W%3==0: for i in range(W): if i%3==1: print(str(X)) else: print("0") exit() else: for i in range(W): if i%3==0: print(str(X)) else: print("0") exit() else: if W%3!=2: print(-1) exit() else: S=str() for i in range(W): if i%3==0: print("9") elif i%3==1: print(str(X-9)) else: print("0") exit() exit() L=[[-1 for i in range(W)] for j in range(H)] for i in range(H): if i%3==2: L[i]=["0"]*W if H%3==1: for i in range(H): if i%3==1: L[i]=["0"]*W if H%3==0: for i in range(H): if i%3==0: L[i]=["0"]*W if W%3==1: for i in range(H): for j in range(W): if j%3==1: L[i][j]="0" if W%3==0: for i in range(H): for j in range(W): if j%3==0: L[i][j]="0" R=[[-1 for i in range(3)] for j in range(3)] for i in range(3): for j in range(3): if i>=H or j>=W: continue R[i][j]=L[i][j] if L[i][j]!="0": if X<=9: R[i][j]=X X=0 else: R[i][j]=9 X-=9 if X!=0: print(-1) exit() for i in range(H): for j in range(W): L[i][j]=str(R[i%3][j%3]) print("".join(L[i]))