結果
問題 | No.2063 ±2^k operations (easy) |
ユーザー | umnc |
提出日時 | 2022-09-11 19:46:08 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,655 bytes |
コンパイル時間 | 2,284 ms |
コンパイル使用メモリ | 201,452 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-05-06 06:27:40 |
合計ジャッジ時間 | 3,329 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | AC | 2 ms
5,376 KB |
testcase_03 | AC | 2 ms
5,376 KB |
testcase_04 | AC | 2 ms
5,376 KB |
testcase_05 | AC | 2 ms
5,376 KB |
testcase_06 | AC | 2 ms
5,376 KB |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | AC | 2 ms
5,376 KB |
testcase_11 | AC | 2 ms
5,376 KB |
testcase_12 | AC | 2 ms
5,376 KB |
testcase_13 | AC | 2 ms
5,376 KB |
testcase_14 | AC | 2 ms
5,376 KB |
testcase_15 | WA | - |
testcase_16 | AC | 2 ms
5,376 KB |
testcase_17 | WA | - |
testcase_18 | AC | 2 ms
5,376 KB |
testcase_19 | AC | 2 ms
5,376 KB |
testcase_20 | AC | 3 ms
5,376 KB |
testcase_21 | AC | 2 ms
5,376 KB |
testcase_22 | WA | - |
testcase_23 | WA | - |
ソースコード
#include <bits/stdc++.h> using namespace std; // #include <atcoder/all> // using namespace atcoder; #define rep(i, n) for (ll i = 0; i < (n); ++i) #define rep1(i, n) for (ll i = 1; i <= n; ++i) #define reps(i, s, e) for (ll i = s; i <= e; ++i) #define rrep(i, n) for (ll i = n - 1; 0 <= i; --i) #define all(v) v.begin(), v.end() #define endl "\n" template <class T> bool chmax(T& a, const T& b) { if (a < b) { a = b; return 1; } return 0; } template <class T> bool chmin(T& a, const T& b) { if (b < a) { a = b; return 1; } return 0; } using ll = long long; using ld = long double; using cp = complex<ld>; using pa = pair<ll, ll>; using tup = tuple<ll, ll, ll>; using vp = vector<pair<ll, ll> >; using vtup = vector<tuple<ll, ll, ll> >; using st = string; using vs = vector<string>; using vc = vector<char>; using vvi = vector<vector<ll> >; using vvc = vector<vector<char> >; using vi = vector<ll>; const ll MOD1 = 1000000007; const ll MOD2 = 998244353; const ll INF = (1LL << 60); void init() { ios_base::sync_with_stdio(false); cin.tie(NULL), cout.tie(NULL); cout << fixed << setprecision(15); } int main() { init(); ll n; cin >> n; ll base = 0, cur = 0; while (n > 0) { if (n % 10) { base += pow(2, cur); } cur++; n /= 10; } if (__builtin_popcount(base) == 1) { cout << "No" << endl; } else if (__builtin_popcount(base) == 2) { cout << "Yes" << endl; } else { rep(i, cur - 1) { string s = to_string(n); rep(i, cur - 1) if (s[i] == '0' && s[i + 1] == '1') { cout << "No" << endl; return 0; } } cout << "Yes" << endl; } }