結果
問題 | No.3 ビットすごろく |
ユーザー | kano_town |
提出日時 | 2014-11-18 22:47:28 |
言語 | Java21 (openjdk 21) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,228 bytes |
コンパイル時間 | 3,620 ms |
コンパイル使用メモリ | 77,424 KB |
実行使用メモリ | 38,844 KB |
最終ジャッジ日時 | 2024-06-10 20:24:36 |
合計ジャッジ時間 | 6,421 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | AC | 77 ms
38,208 KB |
testcase_03 | AC | 74 ms
38,368 KB |
testcase_04 | WA | - |
testcase_05 | AC | 79 ms
38,424 KB |
testcase_06 | AC | 75 ms
38,316 KB |
testcase_07 | WA | - |
testcase_08 | AC | 76 ms
38,636 KB |
testcase_09 | AC | 77 ms
38,524 KB |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | AC | 65 ms
38,324 KB |
testcase_13 | AC | 66 ms
38,512 KB |
testcase_14 | AC | 66 ms
38,656 KB |
testcase_15 | AC | 78 ms
38,456 KB |
testcase_16 | AC | 79 ms
38,484 KB |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | AC | 75 ms
38,224 KB |
testcase_23 | AC | 78 ms
38,256 KB |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | WA | - |
testcase_27 | WA | - |
testcase_28 | WA | - |
testcase_29 | WA | - |
testcase_30 | WA | - |
testcase_31 | WA | - |
testcase_32 | AC | 74 ms
38,460 KB |
ソースコード
import java.io.BufferedReader; import java.io.IOException; import java.io.InputStreamReader; import java.util.Arrays; public class Yukicoder3 { static int N; static int[] bitCount = new int[10001]; static boolean[] memo = new boolean[10001]; static int count = 0; static int min = Integer.MAX_VALUE; static boolean found = false; public static void main(String[] args) throws IOException { BufferedReader br = new BufferedReader(new InputStreamReader(System.in)); N = Integer.parseInt(br.readLine()); String buf; Arrays.fill(bitCount, 0); for (int i = 1; i <= 10000; i++) { buf = Integer.toBinaryString(i); for (int j = 0; j < buf.length(); j++) { if (buf.charAt(j) == '1') bitCount[i]++; } } // search Arrays.fill(memo, false); count = 1; search(1); if (found) System.out.println(min); else System.out.println(-1); } private static void search(int n) { if (n < 1 || n > N || memo[n]) { count--; return; } memo[n] = true; if (n == N) { count--; found = true; min = Math.min(min, count); return; } count++; search(n + bitCount[n]); count++; search(n - bitCount[n]); } }