結果

問題 No.1957 Xor Min
コンテスト
ユーザー Hentci
提出日時 2022-07-11 18:05:10
言語 C++23
(gcc 15.2.0 + boost 1.89.0)
コンパイル:
g++-15 -O2 -lm -std=c++23 -Wuninitialized -DONLINE_JUDGE -o a.out _filename_
実行:
./a.out
結果
AC  
実行時間 2 ms / 2,000 ms
コード長 736 bytes
記録
記録タグの例:
初AC ショートコード 純ショートコード 純主流ショートコード 最速実行時間
コンパイル時間 3,325 ms
コンパイル使用メモリ 333,788 KB
実行使用メモリ 7,716 KB
最終ジャッジ日時 2026-03-06 12:30:54
合計ジャッジ時間 4,229 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 25
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function 'int main()':
main.cpp:17:5: warning: 'leftA' may be used uninitialized [-Wmaybe-uninitialized]
   17 |     if(leftA != leftB) ans = min(a, b);
      |     ^~
main.cpp:11:15: note: 'leftA' was declared here
   11 |     int a, b, leftA, leftB;
      |               ^~~~~
main.cpp:17:5: warning: 'leftB' may be used uninitialized [-Wmaybe-uninitialized]
   17 |     if(leftA != leftB) ans = min(a, b);
      |     ^~
main.cpp:11:22: note: 'leftB' was declared here
   11 |     int a, b, leftA, leftB;
      |                      ^~~~~

ソースコード

diff #
raw source code

#include <bits/stdc++.h>
using namespace std;
#define ll long long
#define all(x) x.begin(),x.end()
#define ar array
#define sz(x) ((int)x.size())
template <class T,class S> inline bool chmin(T &a,const S &b) {return (a> b? a= b, 1: 0);}
template <class T,class S> inline bool chmax(T &a,const S &b) {return (a< b? a= b, 1: 0);}
int main(){
    ios_base::sync_with_stdio(false),cin.tie(0);
    int a, b, leftA, leftB;
    cin >> a >> b;
    for(int i = 0;i < 30;i++) if(a & (1 << i)) leftA = i;
    for(int i = 0;i < 30;i++) if(b & (1 << i)) leftB = i;

    int ans = 0;
    if(leftA != leftB) ans = min(a, b);
    else{
        for(int i = 0;i < leftA;i++)
            ans += (1 << i);
    }

    cout << ans << "\n";


    return 0;
}
0