結果
問題 | No.3 ビットすごろく |
ユーザー | kuramu |
提出日時 | 2016-01-20 12:38:42 |
言語 | Java21 (openjdk 21) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,134 bytes |
コンパイル時間 | 2,252 ms |
コンパイル使用メモリ | 78,740 KB |
実行使用メモリ | 42,896 KB |
最終ジャッジ日時 | 2024-09-21 14:44:56 |
合計ジャッジ時間 | 6,284 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 53 ms
36,816 KB |
testcase_01 | AC | 59 ms
37,244 KB |
testcase_02 | AC | 54 ms
37,208 KB |
testcase_03 | AC | 86 ms
39,612 KB |
testcase_04 | AC | 60 ms
37,628 KB |
testcase_05 | AC | 99 ms
41,660 KB |
testcase_06 | AC | 88 ms
39,704 KB |
testcase_07 | AC | 80 ms
38,712 KB |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | AC | 104 ms
41,892 KB |
testcase_13 | AC | 85 ms
38,748 KB |
testcase_14 | AC | 101 ms
42,536 KB |
testcase_15 | AC | 110 ms
42,896 KB |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | AC | 85 ms
38,856 KB |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | AC | 57 ms
36,672 KB |
testcase_22 | AC | 98 ms
42,712 KB |
testcase_23 | AC | 112 ms
42,556 KB |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | AC | 56 ms
37,220 KB |
testcase_27 | WA | - |
testcase_28 | WA | - |
testcase_29 | WA | - |
testcase_30 | WA | - |
testcase_31 | AC | 56 ms
37,232 KB |
testcase_32 | WA | - |
ソースコード
import java.io.BufferedReader; import java.io.IOException; import java.io.InputStreamReader; import java.util.HashMap; public class Main { public static void main(String[] args) { BufferedReader stdReader =new BufferedReader(new InputStreamReader(System.in)); try { int N = Integer.parseInt(stdReader.readLine()); int[] c = new int[N+1]; for(int i=1;i<N+1;i++){ int count = 0; String bin = Integer.toBinaryString(i); for(int j=0;j<bin.length();j++){ if((""+bin.charAt(j)).equals("1")) count++; } c[i] = count; } int result = 1; int here = 1; HashMap<Integer , String> hMap = new HashMap<>(); while(here<N){ if(hMap.containsKey(here)){ result = -1; break; }else{ hMap.put(here, ""); } if(here + c[here]<=N) here += c[here]; else if(here + c[here]>N) here -= c[here]; result++; } System.out.println(result); } catch (IOException e) { e.printStackTrace(); } } }