結果
問題 | No.887 Collatz |
ユーザー | roundplus |
提出日時 | 2019-09-21 01:49:52 |
言語 | C++17(clang) (17.0.6 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 2 ms / 2,000 ms |
コード長 | 2,010 bytes |
コンパイル時間 | 1,224 ms |
コンパイル使用メモリ | 138,932 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-05-07 19:31:22 |
合計ジャッジ時間 | 2,489 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | AC | 1 ms
5,376 KB |
testcase_03 | AC | 2 ms
5,376 KB |
testcase_04 | AC | 2 ms
5,376 KB |
testcase_05 | AC | 1 ms
5,376 KB |
testcase_06 | AC | 2 ms
5,376 KB |
testcase_07 | AC | 2 ms
5,376 KB |
testcase_08 | AC | 2 ms
5,376 KB |
testcase_09 | AC | 2 ms
5,376 KB |
testcase_10 | AC | 1 ms
5,376 KB |
testcase_11 | AC | 1 ms
5,376 KB |
testcase_12 | AC | 2 ms
5,376 KB |
testcase_13 | AC | 2 ms
5,376 KB |
testcase_14 | AC | 2 ms
5,376 KB |
testcase_15 | AC | 2 ms
5,376 KB |
testcase_16 | AC | 2 ms
5,376 KB |
testcase_17 | AC | 1 ms
5,376 KB |
testcase_18 | AC | 1 ms
5,376 KB |
testcase_19 | AC | 2 ms
5,376 KB |
testcase_20 | AC | 2 ms
5,376 KB |
testcase_21 | AC | 1 ms
5,376 KB |
testcase_22 | AC | 2 ms
5,376 KB |
testcase_23 | AC | 2 ms
5,376 KB |
testcase_24 | AC | 2 ms
5,376 KB |
testcase_25 | AC | 1 ms
5,376 KB |
testcase_26 | AC | 1 ms
5,376 KB |
testcase_27 | AC | 1 ms
5,376 KB |
testcase_28 | AC | 1 ms
5,376 KB |
testcase_29 | AC | 1 ms
5,376 KB |
testcase_30 | AC | 1 ms
5,376 KB |
ソースコード
#include <cstdio> #include <iostream> #include <iomanip> #include <functional> #include <algorithm> #include <string> #include <vector> #include <limits> #include <numeric> #include <queue> #include <cmath> #include <set> #include <map> using namespace std; #define INF (1ll<<60) #define INFint (1<<30) #define MOD 1000000007 #define BOUND 27182818284 typedef long long ll; typedef long long int lli; typedef pair<ll, ll> P; #define rep(i, n) for(int i = 0; i < (int)(n); i++) #define repi(i, a, b) for(int i=int(a);i<int(b);++i) template<class T> bool umax(T &a, const T &b) { if (a < b) { a = b; return true; } return false; } template<class T> bool umin(T &a, const T &b) { if (b < a) { a = b; return true; } return false; } // gcd template<typename T> T gcd(T a, T b) { if (a == 0) return b; return gcd(b % a, a); } int findGCD(int arr[], int n) { int result = arr[0]; for (int i = 1; i < n; i++) result = gcd(arr[i], result); return result; } template<typename T> T lcm(T m, T n) { // 引数に0がある場合は0を返す if ((0 == m) || (0 == n)) return 0; return ((m / gcd(m, n)) * n); // lcm = m * n / gcd(m,n) } template<typename A, size_t N, typename T> void Fill(A (&array)[N], const T &val) { fill((T *) array, (T *) (array + N), val); } int dx[5] = {1, 0, -1, 0}; int dy[5] = {0, 1, 0, -1}; // v.front() = -BOUND; // v.back() = BOUND; //struct edge{ // int cost, to; // // edge(int in_cost, int in_to){ // cost=in_cost; // to=in_to; // } // bool operator<(const edge &a) const // { // return cost > a.cost; // } //}; int main() { int N; cin >> N; int n_i=N; int i=0; int maximum=N; while(n_i!=1){ if(n_i%2){ n_i=3*n_i+1; maximum=max(maximum, n_i); }else{ n_i/=2; } i++; } cout << i << endl << maximum << endl; return 0; }