結果

問題 No.883 ぬりえ
ユーザー maimai
提出日時 2019-09-13 21:59:59
言語 Ruby
(3.3.0)
結果
WA  
実行時間 -
コード長 545 bytes
コンパイル時間 85 ms
コンパイル使用メモリ 7,552 KB
実行使用メモリ 13,824 KB
最終ジャッジ日時 2024-07-04 04:14:46
合計ジャッジ時間 3,223 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 87 ms
12,160 KB
testcase_01 AC 89 ms
12,160 KB
testcase_02 AC 84 ms
12,160 KB
testcase_03 AC 89 ms
12,032 KB
testcase_04 AC 85 ms
12,160 KB
testcase_05 AC 85 ms
12,160 KB
testcase_06 AC 87 ms
12,160 KB
testcase_07 WA -
testcase_08 AC 90 ms
12,288 KB
testcase_09 WA -
testcase_10 AC 83 ms
12,160 KB
testcase_11 AC 85 ms
12,288 KB
testcase_12 AC 86 ms
12,160 KB
testcase_13 AC 84 ms
12,160 KB
testcase_14 AC 87 ms
12,288 KB
testcase_15 AC 92 ms
13,824 KB
testcase_16 AC 86 ms
12,928 KB
testcase_17 AC 86 ms
12,800 KB
testcase_18 AC 85 ms
12,160 KB
testcase_19 AC 84 ms
12,032 KB
testcase_20 WA -
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.rb:12: warning: assigned but unused variable - rn
Syntax OK

ソースコード

diff #

def lscan; gets.split.map(&:to_i); end

def fsqrt(x)
    Math.sqrt(x).to_i
end
def csqrt(x)
    Math.sqrt(x).ceil.to_i
end

n,k = lscan

rn = fsqrt(n)

if true
    c = n/(k*k)
    h = c*k
    rem = n - c*(k*k)
    h += csqrt(rem)
    p h
    m = n
    (n/(k*k)).times do |i|
        k.times do
            puts '.'*(k*i)+'#'*k+'.'*(h-(k*i+k))
        end
        m -= k*k
    end
    r = rem
    z = csqrt(rem)
    z.times do
        a = [0, [r, z].min].max
        b = z - a
        puts '.'*(k*(n/(k*k)))+'#'*a+'.'*b
        r -= z
    end
end
0