結果
問題 | No.78 クジ付きアイスバー |
ユーザー | 小指が強い人 |
提出日時 | 2015-11-24 00:02:39 |
言語 | Ruby (3.3.0) |
結果 |
AC
|
実行時間 | 92 ms / 5,000 ms |
コード長 | 1,016 bytes |
コンパイル時間 | 397 ms |
コンパイル使用メモリ | 7,552 KB |
実行使用メモリ | 12,288 KB |
最終ジャッジ日時 | 2024-11-08 01:33:20 |
合計ジャッジ時間 | 5,056 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 87 ms
12,288 KB |
testcase_01 | AC | 87 ms
12,160 KB |
testcase_02 | AC | 87 ms
12,160 KB |
testcase_03 | AC | 87 ms
12,288 KB |
testcase_04 | AC | 85 ms
12,160 KB |
testcase_05 | AC | 86 ms
12,160 KB |
testcase_06 | AC | 87 ms
12,160 KB |
testcase_07 | AC | 86 ms
12,288 KB |
testcase_08 | AC | 86 ms
12,288 KB |
testcase_09 | AC | 86 ms
12,160 KB |
testcase_10 | AC | 86 ms
12,160 KB |
testcase_11 | AC | 87 ms
12,288 KB |
testcase_12 | AC | 86 ms
12,288 KB |
testcase_13 | AC | 88 ms
12,288 KB |
testcase_14 | AC | 92 ms
12,160 KB |
testcase_15 | AC | 92 ms
12,288 KB |
testcase_16 | AC | 92 ms
12,032 KB |
testcase_17 | AC | 88 ms
12,032 KB |
testcase_18 | AC | 87 ms
12,160 KB |
testcase_19 | AC | 88 ms
12,032 KB |
testcase_20 | AC | 88 ms
12,032 KB |
testcase_21 | AC | 87 ms
12,160 KB |
testcase_22 | AC | 88 ms
12,160 KB |
testcase_23 | AC | 87 ms
12,032 KB |
testcase_24 | AC | 86 ms
12,160 KB |
testcase_25 | AC | 88 ms
12,160 KB |
testcase_26 | AC | 87 ms
12,160 KB |
testcase_27 | AC | 88 ms
12,032 KB |
testcase_28 | AC | 88 ms
12,032 KB |
testcase_29 | AC | 90 ms
12,160 KB |
testcase_30 | AC | 87 ms
12,032 KB |
testcase_31 | AC | 88 ms
12,160 KB |
testcase_32 | AC | 87 ms
12,288 KB |
testcase_33 | AC | 86 ms
12,160 KB |
testcase_34 | AC | 87 ms
12,288 KB |
testcase_35 | AC | 87 ms
12,288 KB |
testcase_36 | AC | 87 ms
12,032 KB |
testcase_37 | AC | 88 ms
12,160 KB |
testcase_38 | AC | 87 ms
12,288 KB |
コンパイルメッセージ
Syntax OK
ソースコード
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