結果

問題 No.78 クジ付きアイスバー
ユーザー 小指が強い人小指が強い人
提出日時 2015-11-23 23:48:39
言語 Ruby
(3.3.0)
結果
WA  
実行時間 -
コード長 996 bytes
コンパイル時間 391 ms
コンパイル使用メモリ 7,424 KB
実行使用メモリ 12,416 KB
最終ジャッジ日時 2024-04-16 05:46:59
合計ジャッジ時間 4,774 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 87 ms
12,288 KB
testcase_01 AC 89 ms
12,288 KB
testcase_02 WA -
testcase_03 AC 88 ms
12,288 KB
testcase_04 WA -
testcase_05 AC 88 ms
12,160 KB
testcase_06 AC 90 ms
12,160 KB
testcase_07 AC 91 ms
12,288 KB
testcase_08 AC 89 ms
12,160 KB
testcase_09 AC 89 ms
12,160 KB
testcase_10 AC 89 ms
12,288 KB
testcase_11 AC 89 ms
12,160 KB
testcase_12 AC 89 ms
12,160 KB
testcase_13 AC 89 ms
12,416 KB
testcase_14 AC 88 ms
12,288 KB
testcase_15 AC 88 ms
12,416 KB
testcase_16 AC 88 ms
12,160 KB
testcase_17 AC 90 ms
12,288 KB
testcase_18 AC 89 ms
12,160 KB
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 AC 89 ms
12,160 KB
testcase_24 AC 90 ms
12,160 KB
testcase_25 AC 94 ms
12,032 KB
testcase_26 AC 90 ms
12,160 KB
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
testcase_33 WA -
testcase_34 WA -
testcase_35 WA -
testcase_36 WA -
testcase_37 WA -
testcase_38 AC 86 ms
12,160 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 || count >= n
        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