結果
問題 | No.4 おもりと天秤 |
ユーザー | かわなか |
提出日時 | 2016-02-06 14:16:36 |
言語 | C++11 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 730 bytes |
コンパイル時間 | 441 ms |
コンパイル使用メモリ | 55,384 KB |
実行使用メモリ | 8,576 KB |
最終ジャッジ日時 | 2024-09-21 20:48:58 |
合計ジャッジ時間 | 7,201 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | AC | 1 ms
5,376 KB |
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 | TLE | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
ソースコード
#include <iostream> using namespace std; int n,w[100]; bool check(const int keep,int pos){ int v = 0; for(int i = pos;i < n;i++){ if(i < n){ v = keep - w[i]; if(v == 0){ return true; } else if(v < 0){ return false; } else if(check(v,i + 1)){ return true; } } } return false; } int main(void){ int i,all = 0; cin >> n; for(i = 0;i < n;i++){ cin >> w[i]; all += w[i]; } if(all % 2 != 0){ cout << "impossible" << endl; return 0; } for(i = 0;i < n;i++){ for(int t = i+1;t < n;t++){ if(w[i] > w[t]){ int z = w[t]; w[t] = w[i]; w[i] = z; } } } cout << endl; if(check(all/2,0)){ cout << "possible" << endl; return 0; } cout << "impossible" << endl; }