結果
問題 | No.2534 コラッツ数列 |
ユーザー | Suryansh Upadhyay |
提出日時 | 2023-11-10 21:35:40 |
言語 | C++23 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,730 bytes |
コンパイル時間 | 2,513 ms |
コンパイル使用メモリ | 243,236 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-09-26 01:13:55 |
合計ジャッジ時間 | 3,366 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | WA | - |
testcase_27 | WA | - |
testcase_28 | WA | - |
testcase_29 | WA | - |
testcase_30 | WA | - |
testcase_31 | WA | - |
testcase_32 | WA | - |
ソースコード
/* Author : linneszyx */ #include <bits/stdc++.h> using namespace std; #define int long long int #define F first #define S second #define pb push_back #define si set<int> #define vi vector<int> #define pii pair<int, int> #define vpi vector<pii> #define vpp vector<pair<int, pii>> #define mii map<int, int> #define mpi map<pii, int> #define spi set<pii> #define endl "\n" #define sz(x) ((int)x.size()) #define all(p) p.begin(), p.end() #define double long double #define forn(i, e) for (int i = 0; i < e; i++) #define forsn(i, s, e) for (int i = s; i < e; i++) #define rforn(i, s) for (int i = s; i >= 0; i--) #define rforsn(i, s, e) for (int i = s; i >= e; i--) #define que_max priority_queue<int> #define que_min priority_queue<int, vi, greater<int>> #define fast_cin() \ ios_base::sync_with_stdio(false); \ cin.tie(NULL); \ cout.tie(NULL) const int N = 1e5 + 5; const int mod = 1e9 + 7; int f(int n) { int s = 0; while (n != 1) { if (n % 2 == 0) n /= 2; else n = 3 * n + 1; s++; if (s > 50) { return -1; } } return s; } void waiffuu() { int n; cin >> n; int res = f(n); if (res == -1) { cout << "P(N) does not stop within 50 steps." << endl; } else { cout << "Number of stop steps for P(N): " << res << endl; } } int32_t main() { fast_cin(); #ifndef ONLINE_JUDGE freopen("input.txt", "r", stdin); freopen("output.txt", "w", stdout); #endif int t = 1; // cin >> t; while (t--) waiffuu(); return 0; }