結果

問題 No.3718 XOR Escape
コンテスト
ユーザー karinohito
提出日時 2026-09-18 22:21:07
言語 C++23
(gcc 15.3.0 + boost 1.92.0 + ACL)
コンパイル:
g++-15 -O2 -lm -std=c++23 -Wuninitialized -DONLINE_JUDGE -o a.out _filename_
実行:
./a.out
結果
WA  
実行時間 -
コード長 570 bytes
記録
記録タグの例:
初AC ショートコード 純ショートコード 純主流ショートコード 最速実行時間
コンパイル時間 2,183 ms
コンパイル使用メモリ 337,224 KB
実行使用メモリ 6,528 KB
最終ジャッジ日時 2026-09-18 22:21:42
合計ジャッジ時間 3,750 ms
ジャッジサーバーID
(参考情報)
judge3_0 / judge2_0
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 4
other AC * 17 WA * 1
権限があれば一括ダウンロードができます

ソースコード

diff #
raw source code

#include<bits/stdc++.h>
using namespace std;
using ll=long long;

int main(){
    ios::sync_with_stdio(false);
    cin.tie(nullptr);

    ll N,A,B,C;
    cin>>N>>A>>B>>C;
    vector<ll> W={A,B,C};
    sort(W.begin(),W.end());
    if(W[0]!=1){
        ll an=N;
        for(int i=0;i<3;i++){
            if(__builtin_popcountll(W[i]+1)==1){
                ll p=(W[i]+1)/2;
                an-=(N+p)/(W[i]+1);
            }
        }
        cout<<an<<"\n";
    }
    else{
        if(W[2]==3){
            cout<<N/4<<"\n";
        }
        else cout<<N/2<<"\n";
    }
}
0