結果

問題 No.4 おもりと天秤
ユーザー 4885rhkA4885rhkA
提出日時 2015-07-08 13:05:12
言語 C++11
(gcc 11.4.0)
結果
WA  
実行時間 -
コード長 908 bytes
コンパイル時間 841 ms
コンパイル使用メモリ 51,776 KB
実行使用メモリ 4,380 KB
最終ジャッジ日時 2023-09-22 09:33:43
合計ジャッジ時間 1,645 ms
ジャッジサーバーID
(参考情報)
judge13 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
4,380 KB
testcase_01 AC 2 ms
4,376 KB
testcase_02 AC 1 ms
4,376 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 AC 1 ms
4,380 KB
testcase_07 WA -
testcase_08 AC 1 ms
4,380 KB
testcase_09 AC 2 ms
4,376 KB
testcase_10 WA -
testcase_11 AC 2 ms
4,380 KB
testcase_12 AC 1 ms
4,376 KB
testcase_13 AC 2 ms
4,380 KB
testcase_14 AC 2 ms
4,376 KB
testcase_15 AC 1 ms
4,380 KB
testcase_16 WA -
testcase_17 AC 2 ms
4,376 KB
testcase_18 AC 2 ms
4,376 KB
testcase_19 WA -
testcase_20 WA -
testcase_21 AC 1 ms
4,380 KB
testcase_22 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

//
//  main.cpp
//  Q19
//
//  Created by AkihiroKOBAYASHI on 7/6/15.
//  Copyright (c) 2015 Akhr5884. All rights reserved.
//

#include <iostream>

int *w;
int sum;
int n;

void judge(int nowWeight, int nowNumber) {
    if(nowNumber == n) {
        std::cout << "impossible" << "\n";
        return;
    }
    if(nowWeight == sum-nowWeight) {
        std::cout << "possible" << "\n";
        return;
    }
    else if(nowWeight+w[nowNumber] > sum-nowWeight) {
        judge(nowWeight, nowNumber + 1);
    }
    else {
        judge(nowWeight + w[nowNumber], nowNumber + 1);
    }
    return;
}

int main(int argc, const char * argv[]) {
    
    
    std::cin >> n;
    w = (int*)malloc(sizeof(w) * n);
    
    int count = 0;
    sum = 0;
    while (count < n) {
        int wi;
        std::cin >> wi;
        w[count] = wi;
        sum += wi;
        count++;
    }
    
    judge(0, 0);

    return 0;
}
0