結果
問題 | No.1701 half price |
ユーザー | Drice27149 |
提出日時 | 2021-10-08 22:08:17 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 497 bytes |
コンパイル時間 | 293 ms |
コンパイル使用メモリ | 32,000 KB |
実行使用メモリ | 6,948 KB |
最終ジャッジ日時 | 2024-07-23 04:28:31 |
合計ジャッジ時間 | 1,010 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,812 KB |
testcase_01 | AC | 2 ms
6,816 KB |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | AC | 2 ms
6,944 KB |
testcase_10 | AC | 2 ms
6,940 KB |
testcase_11 | WA | - |
testcase_12 | AC | 2 ms
6,940 KB |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | AC | 2 ms
6,940 KB |
testcase_16 | AC | 1 ms
6,940 KB |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | AC | 2 ms
6,944 KB |
testcase_21 | AC | 3 ms
6,944 KB |
ソースコード
#include <cstdio> int a[25]; int main(){ int n,w; scanf("%d%d",&n,&w); for(int i = 0; i < n; i++) scanf("%d",&a[i]); int ans = 0; for(int i = 1; i < (1<<n); i++){ int s = i; long long sum = 0; for(int j = 0; j < s; j++){ if(s%2) sum += 1ll*a[j]; s /= 2; } int ok = 0; s = i; if(sum == w) ans++; for(int j = 0; j < s; j++){ if(s%2){ long long after = sum - a[j]/2; if(after == w) ans++; } s /= 2; } //ans += ok; } printf("%d\n",ans); return 0; }