結果
問題 | No.78 クジ付きアイスバー |
ユーザー | siman |
提出日時 | 2016-03-23 23:50:04 |
言語 | Ruby (3.3.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 794 bytes |
コンパイル時間 | 48 ms |
コンパイル使用メモリ | 7,296 KB |
実行使用メモリ | 12,416 KB |
最終ジャッジ日時 | 2024-10-06 19:03:59 |
合計ジャッジ時間 | 4,095 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 78 ms
12,288 KB |
testcase_01 | AC | 80 ms
12,160 KB |
testcase_02 | AC | 89 ms
12,160 KB |
testcase_03 | AC | 79 ms
12,288 KB |
testcase_04 | AC | 77 ms
12,032 KB |
testcase_05 | AC | 76 ms
12,032 KB |
testcase_06 | AC | 77 ms
12,032 KB |
testcase_07 | AC | 82 ms
12,288 KB |
testcase_08 | AC | 80 ms
12,032 KB |
testcase_09 | AC | 80 ms
12,160 KB |
testcase_10 | AC | 81 ms
12,288 KB |
testcase_11 | AC | 76 ms
12,032 KB |
testcase_12 | AC | 78 ms
12,160 KB |
testcase_13 | AC | 78 ms
12,160 KB |
testcase_14 | AC | 77 ms
12,160 KB |
testcase_15 | AC | 80 ms
12,160 KB |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | AC | 74 ms
12,032 KB |
testcase_21 | AC | 76 ms
12,032 KB |
testcase_22 | WA | - |
testcase_23 | AC | 78 ms
12,032 KB |
testcase_24 | AC | 79 ms
12,160 KB |
testcase_25 | AC | 79 ms
12,032 KB |
testcase_26 | AC | 76 ms
12,032 KB |
testcase_27 | AC | 76 ms
12,032 KB |
testcase_28 | AC | 77 ms
12,160 KB |
testcase_29 | AC | 79 ms
12,160 KB |
testcase_30 | AC | 80 ms
12,160 KB |
testcase_31 | WA | - |
testcase_32 | AC | 77 ms
12,160 KB |
testcase_33 | AC | 81 ms
12,160 KB |
testcase_34 | AC | 82 ms
12,032 KB |
testcase_35 | AC | 79 ms
12,032 KB |
testcase_36 | AC | 81 ms
12,288 KB |
testcase_37 | AC | 75 ms
12,288 KB |
testcase_38 | AC | 77 ms
12,288 KB |
コンパイルメッセージ
Syntax OK
ソースコード
class Yukicoder def initialize n, k = gets.chomp.split.map(&:to_i) s = gets.chomp list = Array.new(n, 0) buy_count = 0 atari_cost = 0 s.chars.each_with_index do |ch, index| if atari_cost > 0 atari_cost -= 1 else buy_count += 1 end list[index] = buy_count if ch == '1' atari_cost += 1 elsif ch == '2' atari_cost += 2 end end if n >= k puts list[k-1] else x = k / n y = [buy_count, atari_cost].map{|i| i * x} if k % n == 0 if y[1] > 0 puts [y[0] - y[1] + 1, 1].max else puts [y[0] - y[1], 1].max end else puts [list[k%n-1] + y[0] - y[1], buy_count].max end end end end Yukicoder.new