結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 81 ms
12,160 KB
testcase_01 AC 87 ms
12,160 KB
testcase_02 AC 85 ms
12,288 KB
testcase_03 AC 85 ms
12,160 KB
testcase_04 AC 87 ms
12,160 KB
testcase_05 AC 84 ms
12,288 KB
testcase_06 AC 81 ms
12,160 KB
testcase_07 WA -
testcase_08 AC 82 ms
12,160 KB
testcase_09 WA -
testcase_10 AC 83 ms
12,160 KB
testcase_11 AC 83 ms
12,160 KB
testcase_12 AC 84 ms
12,160 KB
testcase_13 AC 84 ms
12,160 KB
testcase_14 AC 83 ms
12,160 KB
testcase_15 AC 90 ms
13,824 KB
testcase_16 AC 86 ms
12,928 KB
testcase_17 AC 85 ms
12,800 KB
testcase_18 AC 85 ms
12,160 KB
testcase_19 AC 86 ms
12,160 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 = [r, z].min
        b = z - a
        puts '.'*(k*(n/(k*k)))+'#'*a+'.'*b
        r -= z
    end
end
0