結果

問題 No.3 ビットすごろく
ユーザー ふっぴーふっぴー
提出日時 2017-03-30 17:21:42
言語 C90
(gcc 11.4.0)
結果
AC  
実行時間 552 ms / 5,000 ms
コード長 705 bytes
コンパイル時間 576 ms
コンパイル使用メモリ 24,448 KB
実行使用メモリ 392,320 KB
最終ジャッジ日時 2024-07-01 08:37:54
合計ジャッジ時間 6,754 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,812 KB
testcase_01 AC 1 ms
6,944 KB
testcase_02 AC 1 ms
6,944 KB
testcase_03 AC 32 ms
22,784 KB
testcase_04 AC 3 ms
6,940 KB
testcase_05 AC 163 ms
110,336 KB
testcase_06 AC 38 ms
28,032 KB
testcase_07 AC 9 ms
10,240 KB
testcase_08 AC 67 ms
69,888 KB
testcase_09 AC 180 ms
186,880 KB
testcase_10 AC 253 ms
264,448 KB
testcase_11 AC 149 ms
155,904 KB
testcase_12 AC 147 ms
104,448 KB
testcase_13 AC 24 ms
16,768 KB
testcase_14 AC 349 ms
247,552 KB
testcase_15 AC 541 ms
382,464 KB
testcase_16 AC 311 ms
329,984 KB
testcase_17 AC 351 ms
371,456 KB
testcase_18 AC 11 ms
12,672 KB
testcase_19 AC 382 ms
392,320 KB
testcase_20 AC 2 ms
6,944 KB
testcase_21 AC 0 ms
6,940 KB
testcase_22 AC 359 ms
253,568 KB
testcase_23 AC 552 ms
391,936 KB
testcase_24 AC 370 ms
392,192 KB
testcase_25 AC 360 ms
382,848 KB
testcase_26 AC 1 ms
6,940 KB
testcase_27 AC 20 ms
19,712 KB
testcase_28 AC 300 ms
315,520 KB
testcase_29 AC 155 ms
161,280 KB
testcase_30 AC 1 ms
6,940 KB
testcase_31 AC 1 ms
6,940 KB
testcase_32 AC 131 ms
137,088 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.c: In function ‘main’:
main.c:10:9: warning: ignoring return value of ‘scanf’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   10 |         scanf("%d",&n);
      |         ^~~~~~~~~~~~~~

ソースコード

diff #

#include <stdio.h>
#include <string.h>
#include <ctype.h>
#include <math.h>
#include <stdlib.h>
#define INF 1000000000;

int main(void){
	int n;
	scanf("%d",&n);
	int b[n+1];
	int i,j;
	for(i=1;i<n+1;i++){
		int j=i;
		int cnt=0;
		while(j/2!=0){
			if(j%2==1){
				cnt++;
			}
			j=j/2;
		}
		if(j==1){
			cnt++;
		}
		b[i]=cnt;
	}
	int dp[n+2][n+1];
	for(i=0;i<n+2;i++){
		for(j=0;j<n+1;j++){
			dp[i][j]=0;
		}
	}
	dp[1][1]=1;
	i=1;
	while(i<=n && dp[i][n]==0){
		for(j=1;j<n+1;j++){
			if(dp[i][j]==1){
				if(j+b[j]<n+1){
					dp[i+1][j+b[j]]=1;
				}
				if(j-b[j]>0){
					dp[i+1][j-b[j]]=1;
				}
			}
		}
		i++;
	}
	if(dp[i][n]==0){
		printf("-1\n");
	}else{
		printf("%d\n",i);
	}
	return 0;
}
	
0