結果

問題 No.1988 Divisor Tiling
ユーザー ikomaikoma
提出日時 2022-06-24 22:55:24
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 76 ms / 2,000 ms
コード長 556 bytes
コンパイル時間 183 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 71,296 KB
最終ジャッジ日時 2024-11-08 18:39:45
合計ジャッジ時間 3,566 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
51,712 KB
testcase_01 AC 43 ms
51,968 KB
testcase_02 AC 43 ms
51,968 KB
testcase_03 AC 40 ms
51,840 KB
testcase_04 AC 40 ms
52,096 KB
testcase_05 AC 43 ms
51,840 KB
testcase_06 AC 43 ms
51,968 KB
testcase_07 AC 42 ms
52,224 KB
testcase_08 AC 43 ms
52,480 KB
testcase_09 AC 46 ms
52,480 KB
testcase_10 AC 43 ms
52,352 KB
testcase_11 AC 43 ms
52,352 KB
testcase_12 AC 43 ms
52,736 KB
testcase_13 AC 43 ms
52,736 KB
testcase_14 AC 44 ms
52,608 KB
testcase_15 AC 43 ms
52,736 KB
testcase_16 AC 44 ms
52,736 KB
testcase_17 AC 44 ms
52,736 KB
testcase_18 AC 56 ms
63,232 KB
testcase_19 AC 56 ms
63,360 KB
testcase_20 AC 56 ms
63,232 KB
testcase_21 AC 58 ms
63,104 KB
testcase_22 AC 57 ms
63,360 KB
testcase_23 AC 57 ms
63,360 KB
testcase_24 AC 57 ms
63,360 KB
testcase_25 AC 58 ms
63,616 KB
testcase_26 AC 60 ms
64,768 KB
testcase_27 AC 66 ms
66,432 KB
testcase_28 AC 69 ms
67,840 KB
testcase_29 AC 76 ms
70,912 KB
testcase_30 AC 75 ms
71,296 KB
testcase_31 AC 65 ms
65,536 KB
testcase_32 AC 41 ms
52,096 KB
testcase_33 AC 40 ms
51,840 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,H=map(int,input().split())

if N%H!=0:print(-1);exit()

p = {6:3, 28:7, 496:31, 8128:127}

p = p[N]

if (N//p)%H != 0 and H%p!=0:print(-1);exit()
W=N//H
ans = [[0]*W for _ in range(H)]

def solve(a):
    ret = []
    for i in range(1,a//2+1):
        if a%i==0:
            ret.append(i)
    return ret

i=0
if (N//p)%H==0:
    for x in solve(N):
        for j in range(x):
            ans[i//W][i%W] = x
            i+=1
else:
    for x in solve(N):
        for j in range(x):
            ans[i%H][i//H] = x
            i+=1
for a in ans:
    print(*a)
0