結果
問題 | No.3 ビットすごろく |
ユーザー | holeguma |
提出日時 | 2015-07-26 00:14:53 |
言語 | Java21 (openjdk 21) |
結果 |
WA
|
実行時間 | - |
コード長 | 580 bytes |
コンパイル時間 | 2,198 ms |
コンパイル使用メモリ | 74,612 KB |
実行使用メモリ | 37,372 KB |
最終ジャッジ日時 | 2024-07-08 13:55:36 |
合計ジャッジ時間 | 5,197 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | AC | 57 ms
37,040 KB |
testcase_03 | AC | 56 ms
37,260 KB |
testcase_04 | WA | - |
testcase_05 | AC | 59 ms
36,912 KB |
testcase_06 | AC | 58 ms
37,136 KB |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | AC | 58 ms
37,092 KB |
testcase_13 | AC | 58 ms
37,088 KB |
testcase_14 | AC | 59 ms
37,148 KB |
testcase_15 | AC | 57 ms
36,920 KB |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | AC | 58 ms
37,236 KB |
testcase_23 | AC | 58 ms
37,036 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 | WA | - |
ソースコード
import java.io.*; import java.util.Arrays; class Main{ public static void main(String[] args) throws IOException{ BufferedReader br=new BufferedReader(new InputStreamReader(System.in)); String line=""; int[] dp=new int[10001]; int now=1; int count; dp[1]=0; Arrays.fill(dp,-1); while(true){ count=0; String val2=Integer.toBinaryString(now); for(int i=0;i<val2.length();i++){ if(val2.charAt(i)=='1'){ count++; } } if(now+count>10000){ break; } dp[now+count]=dp[now]+1; now+=count; } while((line=br.readLine())!=null){ int n=Integer.parseInt(line); System.out.println(dp[n]); } } }