結果

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

テストケース

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