結果

問題 No.1988 Divisor Tiling
ユーザー simansiman
提出日時 2022-06-30 16:24:25
言語 Ruby
(3.3.0)
結果
AC  
実行時間 113 ms / 2,000 ms
コード長 864 bytes
コンパイル時間 38 ms
コンパイル使用メモリ 7,296 KB
実行使用メモリ 13,184 KB
最終ジャッジ日時 2024-05-03 12:53:26
合計ジャッジ時間 5,017 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 102 ms
12,288 KB
testcase_01 AC 104 ms
12,160 KB
testcase_02 AC 99 ms
12,160 KB
testcase_03 AC 97 ms
12,416 KB
testcase_04 AC 98 ms
12,160 KB
testcase_05 AC 99 ms
12,160 KB
testcase_06 AC 98 ms
12,416 KB
testcase_07 AC 99 ms
12,416 KB
testcase_08 AC 98 ms
12,288 KB
testcase_09 AC 98 ms
12,160 KB
testcase_10 AC 96 ms
12,544 KB
testcase_11 AC 96 ms
12,416 KB
testcase_12 AC 97 ms
12,544 KB
testcase_13 AC 97 ms
12,288 KB
testcase_14 AC 98 ms
12,288 KB
testcase_15 AC 98 ms
12,416 KB
testcase_16 AC 99 ms
12,288 KB
testcase_17 AC 98 ms
12,288 KB
testcase_18 AC 101 ms
12,416 KB
testcase_19 AC 101 ms
12,672 KB
testcase_20 AC 100 ms
12,416 KB
testcase_21 AC 102 ms
12,672 KB
testcase_22 AC 102 ms
12,672 KB
testcase_23 AC 102 ms
12,672 KB
testcase_24 AC 102 ms
12,672 KB
testcase_25 AC 102 ms
12,672 KB
testcase_26 AC 102 ms
12,928 KB
testcase_27 AC 102 ms
12,544 KB
testcase_28 AC 103 ms
12,544 KB
testcase_29 AC 102 ms
12,672 KB
testcase_30 AC 104 ms
13,056 KB
testcase_31 AC 113 ms
13,184 KB
testcase_32 AC 98 ms
12,160 KB
testcase_33 AC 96 ms
12,288 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.rb:18: warning: ambiguous first argument; put parentheses or a space even after `-' operator
Syntax OK

ソースコード

diff #

class Integer
  def divisor_list
    require 'prime'

    return [] if self <= 0
    return [1] if self == 1

    prime_division.map.with_index { |(base, k), i|
      s = i.zero? ? 0 : 1
      (s..k).map { |n| base ** n }
    }.inject { |res, e| res + res.flat_map { |t| e.map { |v| t * v } } }.sort
  end
end

N, H = gets.split.map(&:to_i)

if N % H != 0
  puts -1
  exit
end

W = N / H
height, width = [H, W].sort
ans = Array.new(height) { Array.new(width, 0) }
y = 0
x = 0

N.divisor_list.reverse_each do |v|
  next if v == N
  h = v / width
  w = v % width

  if h > 0
    y.upto(y + h - 1) do |cy|
      0.upto(width - 1) do |cx|
        ans[cy][cx] = v
      end
    end
  else
    w.times do
      ans[y][x] = v
      x += 1
    end
  end

  if h > 0
    y += h
    x = 0
  end
end

if H > W
  ans = ans.transpose
end

puts ans.map { |row| row.join(' ') }

0