結果

問題 No.4 おもりと天秤
ユーザー roaiziroroaiziro
提出日時 2015-09-22 09:06:49
言語 C90
(gcc 11.4.0)
結果
TLE  
実行時間 -
コード長 577 bytes
コンパイル時間 889 ms
コンパイル使用メモリ 21,632 KB
実行使用メモリ 14,008 KB
最終ジャッジ日時 2024-07-19 08:36:07
合計ジャッジ時間 7,344 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 0 ms
5,248 KB
testcase_01 AC 1 ms
5,376 KB
testcase_02 AC 0 ms
5,376 KB
testcase_03 AC 0 ms
5,376 KB
testcase_04 AC 0 ms
5,376 KB
testcase_05 TLE -
testcase_06 -- -
testcase_07 -- -
testcase_08 -- -
testcase_09 -- -
testcase_10 -- -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.c: In function ‘main’:
main.c:22:5: warning: ignoring return value of ‘scanf’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   22 |     scanf("%d", &n);
      |     ^~~~~~~~~~~~~~~
main.c:24:9: warning: ignoring return value of ‘scanf’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   24 |         scanf("%d", &w[i]);
      |         ^~~~~~~~~~~~~~~~~~

ソースコード

diff #

#include<stdio.h>
#define N 100
int w[N];

int f(int i, int n, int sum, int p)
{
    int j;
    if(sum == p){
        return(0);
    }
    for(j = i; j < n; j++){
        if(f(j + 1, n, sum + w[j], p) == 0){
            return(0);
        }
    }
    return(1);
}

int main(int argc, const char * argv[])
{
    int n, i, sum = 0;
    scanf("%d", &n);
    for(i = 0; i < n; i++){
        scanf("%d", &w[i]);
        sum += w[i];
    }
    if(sum % 2 == 1 || f(0, n, 0, sum/2)){
        printf("impossible\n");
    }else{
        printf("possible\n");
    }
    
    return 0;
}
0