結果

問題 No.2241 Reach 1
ユーザー cho435cho435
提出日時 2023-10-12 18:21:24
言語 C++17(gcc12)
(gcc 12.3.0 + boost 1.87.0)
結果
AC  
実行時間 2 ms / 2,000 ms
コード長 325 bytes
コンパイル時間 4,408 ms
コンパイル使用メモリ 260,720 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-09-14 16:49:08
合計ジャッジ時間 5,784 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 35
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#include <atcoder/all>
using namespace std;
using ll = long long;
#define rep(i,n) for(int i=0;i<(int)(n);i++)
using mint = atcoder::modint998244353;

int main(){
	int n;
	cin>>n;
	if(n&1){
		cout<<2<<endl;
		return 0;
	}
	if(__builtin_popcount(n)==1){
		cout<<1<<endl;
	}else{
		cout<<3<<endl;
	}
}
0