結果
| 問題 | No.3631 Collatz conjecture |
| コンテスト | |
| ユーザー |
UT0911
|
| 提出日時 | 2026-08-24 16:57:44 |
| 言語 | C++17 (gcc 15.2.0 + boost 1.90.0) |
| 結果 |
AC
|
| 実行時間 | 1 ms / 2,000 ms |
| + 389µs | |
| コード長 | 2,419 bytes |
| 記録 | |
| コンパイル時間 | 1,298 ms |
| コンパイル使用メモリ | 215,500 KB |
| 実行使用メモリ | 6,272 KB |
| 最終ジャッジ日時 | 2026-08-24 16:57:54 |
| 合計ジャッジ時間 | 3,673 ms |
|
ジャッジサーバーID (参考情報) |
judge3_0 / judge2_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 2 |
| other | AC * 53 |
コンパイルメッセージ
main.cpp:37:14: warning: use of 'auto' in parameter declaration only available with '-std=c++20' or '-fconcepts' [-Wc++20-extensions]
37 | void arrOut2(auto A){
| ^~~~
ソースコード
#include <bits/stdc++.h>
using namespace std;
using namespace std::chrono;
using ll = long long;
using ull = unsigned long long;
using vi = vector<int>;
using vl = vector<ll>;
using vb = vector<bool>;
using vd = vector<double>;
using vs = vector<string>;
using vii = vector<vector<int>>;
using vll = vector<vector<ll>>;
#define ALL(x) (x).begin(), (x).end()
#define coutY cout << "Yes" << "\n";
#define coutN cout << "No" << "\n";
#define arrIn(arr, start, N) for (ll i = (start); i < (N); ++i) cin >> arr[i];
#define arrOut(arr, start, N) for (ll i = (start); i < (N); ++i) { cout << arr[i] <<" "; } cout << "\n";
#define UNIQUE(A) sort(ALL(A)); A.erase(unique(ALL(A)),A.end());
#define mod9 998244353
#define mod1 1000000007
const int intM=1e9;
const ll llM=1e18;
void yn(bool tf) { cout << (tf ? "Yes\n" : "No\n"); }
void YN(bool tf) { cout << (tf ? "YES\n" : "NO\n"); }
string ABC="ABCDEFGHIJKLMNOPQRSTUVWXYZ";
string abc="abcdefghijklmnopqrstuvwxyz";
vi dx={0,-1,1,0};
vi dy={-1,0,0,1};
vi ddx={-1,0,1,-1,1,-1,0,1};
vi ddy={-1,-1,-1,0,0,1,1,1};
template<class T>
using priority_queueR = priority_queue<T, vector<T>, greater<T>>;
//cout << fixed << setprecision(20) <<
void arrOut2(auto A){
for(auto x:A){
for(auto y:x){
cout << y << " ";
}
cout << "\n";
}
}
bool kaibun(string S){
string T=S;
reverse(ALL(S));
return S==T;
}
int ketawa(int x){
string S=to_string(x);
int sum=0;
int len=S.size();
for(int i=0;i<len;i++){
sum+=(int)(S[i]-'0');
}
return sum;
}
ll Power(ll a,ll b,ll m){
ll ans=1,p=a;
for(ll i=0;i<60;i++){
if(b&(1LL<<i)){
ans=(ans*p)%m;
}
p=(p*p)%m;
}
return ans;
}
ll ncr(ll n,ll r,ll m){
if(r<=0||r>n)return 0;
ll bunshi=1;
for(ll i=1;i<=n;i++)bunshi=(bunshi*i)%m;
ll bunbo=1;
for(ll i=1;i<=r;i++)bunbo=(bunbo*i)%m;
for(ll i=1;i<=n-r;i++)bunbo=(bunbo*i)%m;
return (bunshi*Power(bunbo,m-2,m))%m;
}
// auto start = high_resolution_clock::now();
// bool CheckTime(auto limit,auto eps){
// auto end = high_resolution_clock::now();
// return duration_cast<milliseconds>(end - start).count()<limit-eps;
// }
int main() {
cin.tie(nullptr);
ios_base::sync_with_stdio(false);
int now;
cin >> now;
ll count=1;
if(now%2==0)now/=2;
else if(now%2==1)now=3*now+1;
while(now!=1){
if(now%2==0)now/=2;
else if(now%2==1)now=3*now+1;
count++;
}
cout << count << "\n";
return 0;
}
UT0911