結果
問題 | No.2393 Bit Grid Connected Component |
ユーザー | uip-kleh |
提出日時 | 2023-07-31 16:28:47 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 2,011 bytes |
コンパイル時間 | 1,798 ms |
コンパイル使用メモリ | 176,312 KB |
実行使用メモリ | 13,768 KB |
最終ジャッジ日時 | 2024-10-10 09:47:01 |
合計ジャッジ時間 | 5,424 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | TLE | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
ソースコード
#include<bits/stdc++.h> #define rep(i, n) for(ll i = 0; i < ll(n); i++) #define nrep(i, n) for(ll i = 1; i < ll(n + 1); i++) #define rrep(i, n) for(ll i = ll(n) - 1; i >= 0; i--) #define all(x) (x).begin(), (x).end() #define SIZE 2e5 #define INF 2e18 constexpr long long MOD = 1e9 + 7; using namespace std; typedef long long ll; typedef vector<int> iv; typedef vector<ll> lv; typedef vector<bool> bv; typedef pair<ll, ll> ip; typedef vector<ip> pv; typedef vector<iv> ivv; typedef set<int> ist; typedef set<ll> lst; typedef map<int, int> imp; typedef map<ll, ll> lmp; ll gcd(ll a, ll b) { return b ? gcd(b, a % b) : a; } ll lcm(ll a, ll b) { return a / gcd(a, b) * b; } ll digsum(ll n) { ll res = 0; while (n > 0) { res += n % 10; n /= 10; } return res; } ll pow(ll x, ll n) { ll ans = 1; while (n) { if (n % 2) ans *= x; x *= x; n >>= 1; } return ans; } map<ll, ll> numeric_component(ll N) { map<ll, ll> res; for (ll i = 2; i * i <= N; i++) { if (N % i != 0) continue; while (N % i == 0) { res[i]++; N /= i; } } if (N != 1) res[N]++; return res; } iv dx = {-1, 0, 1, 0}; iv dy = {0, -1, 0, 1}; struct edge { int from, to, length; }; void print(iv &a) { for (auto v : a) cout << v << ' '; cout << endl; } bool isblack(ll x, ll y) { return x & (1 << y); } int main() { int T; cin >> T; // cout << isblack(2, 0) << endl; while(T--) { ll x, y; cin >> x >> y; if(!isblack(x, y)){ cout << 0 << endl; continue; } while(isblack(x+1, y) and x < (1LL<<60)){ x++; } while(isblack(x, y+1) and y < 60){ y++; cout << y << endl; } ll ans = 0; while(isblack(x, y)){ ans += 1LL << y; y--; } cout << "================" << T << endl; cout << ans << endl; } }