結果

問題 No.2241 Reach 1
ユーザー abc3
提出日時 2023-03-10 23:17:18
言語 C++17
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 953 ms / 2,000 ms
コード長 1,037 bytes
コンパイル時間 2,777 ms
コンパイル使用メモリ 214,452 KB
最終ジャッジ日時 2025-02-11 09:14:15
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 35
権限があれば一括ダウンロードができます

ソースコード

diff #

    #include <bits/stdc++.h>
    using namespace std;
    #include <ext/pb_ds/assoc_container.hpp>
    using namespace __gnu_pbds;
    
    template<class T> inline bool chmax(T& a, T b) { if (a < b) { a = b; return 1; } return 0; }
    template<class T> inline bool chmin(T& a, T b) { if (a > b) { a = b; return 1; } return 0; }
    #define rep(i,n) for (int i = 0; i < (n); ++i)

    typedef long long ll;
    typedef unsigned long long ull;
    typedef long double ld;
    using P=pair<ll,ll>;
    using tp=tuple<ll,ll,ll>;
    const int INF=1001001001; 
    const ll INFL=1e18;
    const ll mod=998244353;
    
    void solve(){
        int n;
        cin>>n;
        rep(s,1<<30){
            if(n==1<<s){
                cout<<"1"<<endl;
                return;
            }
        }
        if(n%2==0){
            cout<<3<<endl;
        }else{
            cout<<2<<endl;
        }
    }

    int main(){
        ios_base::sync_with_stdio(false);
        cin.tie(NULL);
        
        solve();
        
        return 0;
    }
0