結果

問題 No.78 クジ付きアイスバー
ユーザー 小指が強い人小指が強い人
提出日時 2015-11-24 00:02:39
言語 Ruby
(3.3.0)
結果
AC  
実行時間 85 ms / 5,000 ms
コード長 1,016 bytes
コンパイル時間 275 ms
コンパイル使用メモリ 7,552 KB
実行使用メモリ 12,416 KB
最終ジャッジ日時 2024-04-25 14:37:40
合計ジャッジ時間 4,254 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 80 ms
12,416 KB
testcase_01 AC 85 ms
12,160 KB
testcase_02 AC 85 ms
12,416 KB
testcase_03 AC 82 ms
12,288 KB
testcase_04 AC 79 ms
12,160 KB
testcase_05 AC 81 ms
12,160 KB
testcase_06 AC 80 ms
12,416 KB
testcase_07 AC 81 ms
12,160 KB
testcase_08 AC 81 ms
12,160 KB
testcase_09 AC 82 ms
12,288 KB
testcase_10 AC 80 ms
12,160 KB
testcase_11 AC 77 ms
12,160 KB
testcase_12 AC 79 ms
12,160 KB
testcase_13 AC 78 ms
12,160 KB
testcase_14 AC 80 ms
12,288 KB
testcase_15 AC 79 ms
12,288 KB
testcase_16 AC 78 ms
12,160 KB
testcase_17 AC 78 ms
12,416 KB
testcase_18 AC 82 ms
12,160 KB
testcase_19 AC 81 ms
12,288 KB
testcase_20 AC 80 ms
12,288 KB
testcase_21 AC 79 ms
12,416 KB
testcase_22 AC 81 ms
12,160 KB
testcase_23 AC 81 ms
12,160 KB
testcase_24 AC 82 ms
12,160 KB
testcase_25 AC 80 ms
12,160 KB
testcase_26 AC 78 ms
12,160 KB
testcase_27 AC 79 ms
12,288 KB
testcase_28 AC 79 ms
12,160 KB
testcase_29 AC 79 ms
12,288 KB
testcase_30 AC 80 ms
12,288 KB
testcase_31 AC 81 ms
12,416 KB
testcase_32 AC 79 ms
12,288 KB
testcase_33 AC 82 ms
12,288 KB
testcase_34 AC 82 ms
12,416 KB
testcase_35 AC 80 ms
12,416 KB
testcase_36 AC 80 ms
12,160 KB
testcase_37 AC 80 ms
12,288 KB
testcase_38 AC 79 ms
12,416 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

n, k = gets.split.map(&:to_i)
s = gets.strip
a = Array.new
b = Hash.new(-1)
s.each_char{ |x| a.push(x.to_i) }
buy = 0
curr = 0
count = 0
while true do
    if b.has_key?(curr)
        break
    end
    buy += 1
    free = 0
    roop = curr
    pc = 0
    while true do
        free += a[curr]
        count += 1
        pc += 1
        break if free == 0
        curr = (curr + 1) % n
        free -= 1
        break if roop == curr
    end
    if count >= k || (a[roop] != 0 && roop == curr)
        puts buy
        exit
    end
    b[roop] = pc
    curr = (curr + 1) % n
end
bn = 0
kc = 0
find = false
vsum = 0
b.each do |key, value|
    if key == curr
        bn = b.length - kc
        find = true
    end
    if find
        vsum += value
    end
    kc += 1
end
rc = (k - count) / vsum
left = k - count - rc * vsum
buy += rc * bn
vc = 0
b.each_value do |value|
    if vc >= b.length - bn
        if left <= 0
            break
        end
        left -= value
        buy += 1
    end
    vc += 1
end
puts buy
0