結果
問題 | No.4 おもりと天秤 |
ユーザー | HAHAHA |
提出日時 | 2015-05-31 00:39:20 |
言語 | C++11 (gcc 11.4.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 963 bytes |
コンパイル時間 | 625 ms |
コンパイル使用メモリ | 75,396 KB |
実行使用メモリ | 10,144 KB |
最終ジャッジ日時 | 2024-07-06 12:52:50 |
合計ジャッジ時間 | 7,029 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
6,812 KB |
testcase_01 | AC | 1 ms
6,940 KB |
testcase_02 | AC | 1 ms
6,944 KB |
testcase_03 | AC | 1 ms
6,940 KB |
testcase_04 | AC | 2 ms
6,940 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 | -- | - |
ソースコード
#include<iostream> #include<cstdio> #include<cstring> #include<string> #include<vector> #include<queue> #include<set> #include<map> #include<utility> #include<sstream> #include<cctype> #include<cmath> #include<algorithm> using namespace std; #define ALL(x) (x).begin(),(x).end() #define RALL(x) (x).rbegin(), (x).rend() #define rev(i,n) for(int (i)=(n-1);(i)>=0;(i)--) #define repp(i,n) for(int (i)=1;(i)<=(n);(i)++) #define rep(i,n) for(int (i)=0;(i)<(n);(i)++) #define rev(i,n) for(int (i)=(n-1);(i)>=0;(i)--) #define clr(a) memset((a), 0 ,sizeof(a)) typedef pair<int,int> P; typedef vector<pair<int,string> > pii; typedef map<string,int> mi; vector<int>vc; int A[1000]; bool memo[10000]; int n,sum; void dfs(int a,int b){ if(a==n)return; memo[b]=true; dfs(a+1,b); dfs(a+1,A[a]+b); } int main(){ cin >> n; for(int i=0;i<n;i++){ cin >> A[i]; sum+=A[i]; } dfs(0,0); cout << (sum%2==0&&memo[sum/2]?"possible":"impossible") << endl; return 0; }