結果
問題 | No.2844 Birthday Party Decoration |
ユーザー | tama04 |
提出日時 | 2024-09-22 22:56:48 |
言語 | C++23(gcc13) (gcc 13.2.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 829 bytes |
コンパイル時間 | 5,240 ms |
コンパイル使用メモリ | 283,624 KB |
実行使用メモリ | 6,948 KB |
最終ジャッジ日時 | 2024-09-22 22:56:57 |
合計ジャッジ時間 | 5,105 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,812 KB |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
ソースコード
#include <bits/stdc++.h> using namespace std; #define rep(i, n) for (int i = 0; i < n; i++) #define all(V) (V).begin(),(V).end() typedef long long ll; int main(void) { int t; cin >> t; vector<ll> ans; while (t > 0) { ll n, x; cin >> n >> x; vector<int> c(n); rep(i, n) { cin >> c[i]; } sort(all(c), greater<int>()); ll res = 0; rep(i, n) { if (!(x & (1 << c[i]))) { ll big = (floor(x / pow(2, c[i])) + 1) * pow(2, c[i]); ll small = floor(x / pow(2, c[i])) * pow(2, c[i]) - 1; ll check = floor(x / pow(2, c[i])); if (check == 0 || abs(x - big) <= abs(x - small)) { res = 2 * abs(x - big); break; } else { res = 2 * abs(x - small); break; } } } ans.push_back(res); t--; } rep(i, ans.size()) { cout << ans[i] << endl; } return 0; }