結果
問題 | No.3 ビットすごろく |
ユーザー | fine |
提出日時 | 2016-03-22 00:47:12 |
言語 | Ruby (3.3.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 476 bytes |
コンパイル時間 | 196 ms |
コンパイル使用メモリ | 7,296 KB |
実行使用メモリ | 12,544 KB |
最終ジャッジ日時 | 2024-10-01 12:35:32 |
合計ジャッジ時間 | 4,675 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 88 ms
12,032 KB |
testcase_01 | AC | 89 ms
12,160 KB |
testcase_02 | AC | 88 ms
12,160 KB |
testcase_03 | AC | 96 ms
12,288 KB |
testcase_04 | WA | - |
testcase_05 | AC | 96 ms
12,416 KB |
testcase_06 | AC | 93 ms
12,416 KB |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | AC | 98 ms
12,416 KB |
testcase_13 | AC | 92 ms
12,160 KB |
testcase_14 | AC | 101 ms
12,288 KB |
testcase_15 | AC | 100 ms
12,288 KB |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | AC | 90 ms
12,032 KB |
testcase_22 | AC | 98 ms
12,288 KB |
testcase_23 | AC | 102 ms
12,288 KB |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | AC | 87 ms
12,032 KB |
testcase_27 | WA | - |
testcase_28 | WA | - |
testcase_29 | WA | - |
testcase_30 | WA | - |
testcase_31 | WA | - |
testcase_32 | WA | - |
コンパイルメッセージ
Main.rb:24: warning: ambiguous first argument; put parentheses or a space even after `-' operator Syntax OK
ソースコード
n = gets.to_i ans = Array.new(n,-1) a = [[1,1]] min = 100000 until a.empty? x = a.pop if x[0] == n min = [min, x[1]].min elsif ans[x[0] - 1] != -1 next else ans[x[0] - 1] = x[1] tmp = x[0].to_s(2).count('1') if x[0] + tmp <= n a.push([x[0] + tmp, x[1] + 1]) end if x[0] - tmp > 0 a.push([x[0] - tmp, x[1] + 1]) end end end if min == 100000 p -1 else p min end