結果

問題 No.1988 Divisor Tiling
ユーザー EguyEguy
提出日時 2022-06-24 21:44:20
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 74 ms / 2,000 ms
コード長 925 bytes
コンパイル時間 428 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 72,576 KB
最終ジャッジ日時 2024-11-08 17:37:48
合計ジャッジ時間 3,357 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,096 KB
testcase_01 AC 38 ms
52,224 KB
testcase_02 AC 38 ms
52,352 KB
testcase_03 AC 37 ms
52,224 KB
testcase_04 AC 38 ms
52,608 KB
testcase_05 AC 39 ms
52,480 KB
testcase_06 AC 40 ms
52,608 KB
testcase_07 AC 38 ms
52,352 KB
testcase_08 AC 40 ms
52,864 KB
testcase_09 AC 38 ms
53,120 KB
testcase_10 AC 40 ms
52,864 KB
testcase_11 AC 40 ms
52,992 KB
testcase_12 AC 40 ms
52,992 KB
testcase_13 AC 40 ms
52,992 KB
testcase_14 AC 38 ms
52,992 KB
testcase_15 AC 40 ms
53,248 KB
testcase_16 AC 41 ms
52,992 KB
testcase_17 AC 42 ms
53,248 KB
testcase_18 AC 53 ms
64,256 KB
testcase_19 AC 53 ms
63,872 KB
testcase_20 AC 56 ms
64,896 KB
testcase_21 AC 55 ms
63,616 KB
testcase_22 AC 54 ms
63,744 KB
testcase_23 AC 53 ms
64,128 KB
testcase_24 AC 53 ms
64,640 KB
testcase_25 AC 55 ms
64,896 KB
testcase_26 AC 58 ms
65,280 KB
testcase_27 AC 61 ms
67,584 KB
testcase_28 AC 64 ms
68,352 KB
testcase_29 AC 74 ms
72,576 KB
testcase_30 AC 68 ms
71,552 KB
testcase_31 AC 57 ms
66,304 KB
testcase_32 AC 37 ms
52,096 KB
testcase_33 AC 37 ms
52,352 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys, math
sys.setrecursionlimit(1000000)
INF = 1 << 100
mod = 1000000007
#mod = 998244353
input = lambda: sys.stdin.readline().rstrip()
li = lambda: list(map(int, input().split()))

def get_divisors(x: int) -> list:
    divisors = []
    for i in range(1, x+1):
        if i * i > x:
            break
        if x % i == 0:
            divisors.append(i)
            if x // i != i:
                divisors.append(x // i)
    return divisors

N, H = li()
W = N // H
flg = 0
if H > W:
    H, W = W, H
    flg = 1

divs = get_divisors(N)
divs = sorted(divs, reverse=1)[1:]
ans = [[0] * W for _ in range(H)]
idx = 0
rest = [i for i in divs]

for h in range(H):
    for w in range(W):
        ans[h][w] = divs[idx]
        rest[idx] -= 1
        if not rest[idx]:
            idx += 1

if flg:
    def rotate_clockwise(A):
        return list(zip(*(A[::-1])))
    ans = rotate_clockwise(ans)

for a in ans:
    print(*a)
0