結果
問題 | No.3 ビットすごろく |
ユーザー | La |
提出日時 | 2020-11-23 16:30:16 |
言語 | Ruby (3.3.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 257 bytes |
コンパイル時間 | 491 ms |
コンパイル使用メモリ | 7,552 KB |
実行使用メモリ | 26,396 KB |
最終ジャッジ日時 | 2024-07-23 17:35:25 |
合計ジャッジ時間 | 12,641 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 88 ms
12,288 KB |
testcase_01 | AC | 87 ms
12,160 KB |
testcase_02 | AC | 88 ms
12,160 KB |
testcase_03 | AC | 134 ms
12,416 KB |
testcase_04 | AC | 98 ms
12,416 KB |
testcase_05 | AC | 637 ms
13,056 KB |
testcase_06 | AC | 132 ms
12,288 KB |
testcase_07 | AC | 109 ms
12,544 KB |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | TLE | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
testcase_26 | -- | - |
testcase_27 | -- | - |
testcase_28 | -- | - |
testcase_29 | -- | - |
testcase_30 | -- | - |
testcase_31 | -- | - |
testcase_32 | -- | - |
コンパイルメッセージ
Syntax OK
ソースコード
N=gets.to_i dp=Array.new(N+1,-1) Q=[[1,1]] until Q.empty? u,v=Q.shift next if u<1||u>N dp[u]=v ua=u+u.to_s(2).count('1') ub=u-u.to_s(2).count('1') Q.push([ua,v+1]) if dp[ua]==-1 && ua<=N Q.push([ub,v+1]) if dp[ub]==-1 && ub>=1 end puts dp[N]