結果
問題 | No.3 ビットすごろく |
ユーザー | kapo |
提出日時 | 2016-04-24 17:55:12 |
言語 | C90 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 729 bytes |
コンパイル時間 | 315 ms |
コンパイル使用メモリ | 22,656 KB |
実行使用メモリ | 6,824 KB |
最終ジャッジ日時 | 2024-10-04 15:38:42 |
合計ジャッジ時間 | 1,746 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | RE | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | RE | - |
testcase_24 | RE | - |
testcase_25 | WA | - |
testcase_26 | WA | - |
testcase_27 | WA | - |
testcase_28 | WA | - |
testcase_29 | WA | - |
testcase_30 | WA | - |
testcase_31 | WA | - |
testcase_32 | WA | - |
コンパイルメッセージ
main.c: In function ‘main’: main.c:42:9: warning: ignoring return value of ‘scanf’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 42 | scanf("%d", &n); | ^~~~~~~~~~~~~~~
ソースコード
#include <stdio.h> #include <stdlib.h> #include <string.h> int bit_count(int a) { int i = 0; while(a) { i++; a &= (a-1); } return i; } int search(int *a, int n) { int b[10001], i, j, cnt = 0; memcpy(b, a, n*4+4); for( i = 0; i <= n; i++) { if(b[i]) { int t = bit_count(i); printf("%d の時 bit_count=%d\n", i, t); if(!b[i+t] || b[i+t] > b[i]+1) { b[i+t] = b[i]+1; cnt++; } if(i-t > 0){ if(!b[i-t] || b[i-t] > b[i]+1) { b[i-t] = b[i]+1; cnt++; } } } } memcpy(a, b, n*4+4); return cnt; } int main(void) { int n, i, a[10001] = {0, 1}; scanf("%d", &n); while(i = search(a, n)); if(!a[n]) { printf("-1\n"); } else { printf("%d\n", a[n]); } return 0; }