結果
問題 | No.3 ビットすごろく |
ユーザー | atkrym |
提出日時 | 2016-11-07 01:05:44 |
言語 | Java21 (openjdk 21) |
結果 |
WA
|
実行時間 | - |
コード長 | 937 bytes |
コンパイル時間 | 1,865 ms |
コンパイル使用メモリ | 77,224 KB |
実行使用メモリ | 57,080 KB |
最終ジャッジ日時 | 2024-05-03 22:30:10 |
合計ジャッジ時間 | 7,440 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 121 ms
54,104 KB |
testcase_01 | AC | 119 ms
54,172 KB |
testcase_02 | AC | 105 ms
52,920 KB |
testcase_03 | AC | 137 ms
54,228 KB |
testcase_04 | WA | - |
testcase_05 | AC | 139 ms
54,732 KB |
testcase_06 | AC | 144 ms
54,408 KB |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | AC | 136 ms
54,376 KB |
testcase_13 | AC | 125 ms
53,916 KB |
testcase_14 | AC | 141 ms
54,900 KB |
testcase_15 | AC | 125 ms
54,616 KB |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | AC | 118 ms
53,996 KB |
testcase_22 | AC | 125 ms
54,496 KB |
testcase_23 | AC | 140 ms
54,744 KB |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | AC | 107 ms
53,928 KB |
testcase_27 | WA | - |
testcase_28 | WA | - |
testcase_29 | WA | - |
testcase_30 | WA | - |
testcase_31 | WA | - |
testcase_32 | WA | - |
ソースコード
import java.util.*; public class Main { private static Scanner sc = new Scanner(System.in); private static int[] dp; private static int n; public static void main(String[] args) throws Exception { n = sc.nextInt(); dp = new int[n+1]; dfs(1,1); int ret = dp[n]; if (ret==0) { System.out.println(-1); } else { System.out.println(ret); } } private static void dfs(int i, int cnt) { if (dp[i]>0) return; dp[i] = cnt; int c = count(i); if (i-c>0) { dfs(i-c,cnt+1); } if (i+c<=n) { dfs(i+c,cnt+1); } } private static int count(int val) { String s = Integer.toBinaryString(val); int cnt = 0; for (int i = 0;i < s.length();i++) { if (s.charAt(i)=='1') cnt++; } return cnt; } }