結果
問題 | No.1988 Divisor Tiling |
ユーザー | siganai |
提出日時 | 2022-06-25 19:00:36 |
言語 | PyPy3 (7.3.15) |
結果 |
AC
|
実行時間 | 93 ms / 2,000 ms |
コード長 | 1,200 bytes |
コンパイル時間 | 199 ms |
コンパイル使用メモリ | 82,376 KB |
実行使用メモリ | 78,352 KB |
最終ジャッジ日時 | 2024-11-15 06:49:05 |
合計ジャッジ時間 | 4,294 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 62 ms
64,600 KB |
testcase_01 | AC | 58 ms
65,056 KB |
testcase_02 | AC | 57 ms
64,152 KB |
testcase_03 | AC | 58 ms
64,408 KB |
testcase_04 | AC | 58 ms
64,436 KB |
testcase_05 | AC | 57 ms
65,460 KB |
testcase_06 | AC | 57 ms
65,192 KB |
testcase_07 | AC | 57 ms
64,204 KB |
testcase_08 | AC | 59 ms
65,004 KB |
testcase_09 | AC | 58 ms
64,636 KB |
testcase_10 | AC | 59 ms
64,876 KB |
testcase_11 | AC | 59 ms
64,856 KB |
testcase_12 | AC | 58 ms
64,772 KB |
testcase_13 | AC | 58 ms
64,924 KB |
testcase_14 | AC | 59 ms
65,500 KB |
testcase_15 | AC | 59 ms
64,908 KB |
testcase_16 | AC | 60 ms
64,964 KB |
testcase_17 | AC | 60 ms
65,652 KB |
testcase_18 | AC | 69 ms
70,728 KB |
testcase_19 | AC | 70 ms
70,908 KB |
testcase_20 | AC | 71 ms
71,060 KB |
testcase_21 | AC | 70 ms
69,948 KB |
testcase_22 | AC | 69 ms
69,968 KB |
testcase_23 | AC | 70 ms
70,012 KB |
testcase_24 | AC | 71 ms
70,760 KB |
testcase_25 | AC | 70 ms
70,468 KB |
testcase_26 | AC | 73 ms
71,760 KB |
testcase_27 | AC | 77 ms
73,020 KB |
testcase_28 | AC | 81 ms
74,960 KB |
testcase_29 | AC | 93 ms
78,352 KB |
testcase_30 | AC | 93 ms
78,336 KB |
testcase_31 | AC | 76 ms
72,576 KB |
testcase_32 | AC | 60 ms
64,000 KB |
testcase_33 | AC | 63 ms
64,000 KB |
ソースコード
#!/usr/bin/env PyPy3 from collections import Counter, defaultdict, deque import itertools import re import math from functools import reduce import operator import bisect from heapq import * import functools mod=998244353 import sys input=sys.stdin.readline n,h=map(int,input().split()) def divisor(n): sq = n**0.5 border = int(sq) table = [] bigs = [] for small in range(1, border+1): if n%small == 0: table.append(small) big = n//small bigs.append(big) if border == sq:#nが平方数 bigs.pop() table += reversed(bigs) return table ta = divisor(n) ans = [[0] * (n // h) for _ in range(h)] if h & -h == h: i = j = 0 k = 0 while j < h: c = ta[k] while c: ans[j][i] = ta[k] c -= 1 i += 1 if i == n // h: i = 0 j += 1 k += 1 else: i = j = 0 k = 0 while i < n // h: c = ta[k] while c: ans[j][i] = ta[k] c -= 1 j += 1 if j == h: i += 1 j = 0 k += 1 for i in range(h): print(*ans[i])